FIX: Fix missing wxTimer declaration

src/slic3r/GUI/DeviceCore/DevManager.h:108:5: error: ‘wxTimer’ does not name a type
  108 |     wxTimer* m_timer{ nullptr };
      |     ^~~~~~~

(cherry picked from commit be709a977ea47380135606cccfab325cc5bb9df1)
This commit is contained in:
Bastien Nocera
2025-08-12 21:09:30 +02:00
committed by Noisyfox
parent a77b19bb46
commit 174346e113

View File

@@ -4,6 +4,7 @@
#include "slic3r/Utils/json_diff.hpp"
#include <wx/string.h>
#include <wx/timer.h>
namespace Slic3r
{