From 06a146e20cbc9642b3f65a5173ffbee3c052798c Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 25 Mar 2025 18:27:58 +0100 Subject: [PATCH] FIX: Fix missing wxGridSizer declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /run/build/BambuStudio/src/slic3r/GUI/DragDropPanel.hpp:36:5: error: ‘wxGridSizer’ does not name a type; did you mean ‘wxSizer’? 36 | wxGridSizer *m_grid_item_sizer; | ^~~~~~~~~~~ | wxSizer --- src/slic3r/GUI/DragDropPanel.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/DragDropPanel.hpp b/src/slic3r/GUI/DragDropPanel.hpp index 7a10f4084..d98816483 100644 --- a/src/slic3r/GUI/DragDropPanel.hpp +++ b/src/slic3r/GUI/DragDropPanel.hpp @@ -6,6 +6,7 @@ #include #include +#include #include #include