FIX: Fix missing wxDC declaration

/run/build/BambuStudio/src/slic3r/Utils/WxFontUtils.hpp: At global scope:
/run/build/BambuStudio/src/slic3r/Utils/WxFontUtils.hpp:44:56: error: ‘wxDC’ has not been declared
   44 |     static void get_suitable_font_size(int max_height, wxDC &dc);
      |                                                        ^~~~
This commit is contained in:
Bastien Nocera 2025-03-25 19:40:12 +01:00 committed by Lane.Wei
parent ab34522143
commit 7f24d51237
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include <optional> #include <optional>
#include <string_view> #include <string_view>
#include <boost/bimap.hpp> #include <boost/bimap.hpp>
#include <wx/dc.h>
#include <wx/font.h> #include <wx/font.h>
#include "libslic3r/Emboss.hpp" #include "libslic3r/Emboss.hpp"