Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2020-10-16 22:18:23 +0300
committerOleksandra Yushchenko <yusanka@gmail.com>2020-11-02 17:48:30 +0300
commitf1a74367ed7f8490dc32edeb44712fba899777e1 (patch)
tree20f73ae3c056097320434c1870c7091c89b3f345 /src/slic3r/GUI/Field.hpp
parent74d6aea4d488ab4737f58953cc32c1a11f51835b (diff)
Choice field: Use wxComboBox instead of wxBitmapComboBox for non-OSX platforms
Diffstat (limited to 'src/slic3r/GUI/Field.hpp')
-rw-r--r--src/slic3r/GUI/Field.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp
index c716259db..d775abf3e 100644
--- a/src/slic3r/GUI/Field.hpp
+++ b/src/slic3r/GUI/Field.hpp
@@ -416,8 +416,8 @@ public:
void msw_rescale(bool rescale_sidetext = false) override;
- void enable() override { dynamic_cast<wxBitmapComboBox*>(window)->Enable(); };
- void disable() override{ dynamic_cast<wxBitmapComboBox*>(window)->Disable(); };
+ void enable() override ;//{ dynamic_cast<wxBitmapComboBox*>(window)->Enable(); };
+ void disable() override;//{ dynamic_cast<wxBitmapComboBox*>(window)->Disable(); };
wxWindow* getWindow() override { return window; }
};