Choice field: Use wxComboBox instead of wxBitmapComboBox for non-OSX platforms

This commit is contained in:
YuSanka
2020-11-02 06:48:30 -08:00
committed by Oleksandra Yushchenko
parent 74d6aea4d4
commit f1a74367ed
2 changed files with 26 additions and 14 deletions
+2 -2
View File
@@ -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; }
};