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

This commit is contained in:
YuSanka 2020-10-16 21:18:23 +02:00 committed by Oleksandra Yushchenko
parent 74d6aea4d4
commit f1a74367ed
2 changed files with 26 additions and 14 deletions

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; }
};