FIX:fixed the side menu popup cannot be selected on macos 13

Change-Id: Ic4e9182a1a7175b89f37114b3857e813f299989d
This commit is contained in:
tao wang 2022-12-19 14:45:32 +08:00 committed by Lane.Wei
parent e32792c305
commit 51deb70f64
4 changed files with 18 additions and 2 deletions

View file

@ -282,6 +282,7 @@ private:
bool enable_sync = false;
bool m_is_dark_mode{ false };
bool m_adding_script_handler { false };
bool m_side_popup_status{false};
public:
std::string get_local_models_path();
bool OnInit() override;
@ -336,6 +337,9 @@ public:
void update_fonts(const MainFrame *main_frame = nullptr);
void set_label_clr_modified(const wxColour& clr);
void set_label_clr_sys(const wxColour& clr);
//update side popup status
bool get_side_menu_popup_status();
void set_side_menu_popup_status(bool status);
const wxColour& get_label_clr_modified(){ return m_color_label_modified; }
const wxColour& get_label_clr_sys() { return m_color_label_sys; }