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);
      |                                                        ^~~~

(cherry picked from commit 7f24d5123766fbcfcec6f1343eefa32edb6254d6)
This commit is contained in:
Bastien Nocera
2025-03-25 19:40:12 +01:00
committed by Noisyfox
parent 22d6e9de2b
commit bc9e0066e7

View File

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