mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
FIX: the event should be skipped
jira: [studio-12348] Change-Id: I5a876989ec763a2f0dc510b352c21059495d7314 (cherry picked from commit cdb9acc8a4596036ce41de503453895e9f4e81f9)
This commit is contained in:
@@ -44,7 +44,7 @@ void uiAmsPercentHumidityDryPopup::Create()
|
||||
|
||||
m_close_btn = new ScalableButton(this, wxID_ANY, "hum_popup_close");
|
||||
m_close_btn->SetBackgroundColour(*wxWHITE);
|
||||
m_close_btn->Bind(wxEVT_LEFT_UP, [this](auto& e) { Dismiss(); });
|
||||
m_close_btn->Bind(wxEVT_LEFT_UP, [this](auto& e) { Dismiss(); e.Skip(); });
|
||||
title_sizer->AddStretchSpacer();
|
||||
title_sizer->Add(title, 0, wxALIGN_CENTER_HORIZONTAL);
|
||||
title_sizer->AddStretchSpacer();
|
||||
|
||||
Reference in New Issue
Block a user