mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
FIX: [STUDIO-3046] prevent wxGuiLog on app quit
Change-Id: I1a973a5e42eb286935317fdd8b6d08fb90a2f429
This commit is contained in:
@@ -475,10 +475,9 @@ void DropDown::mouseWheelMoved(wxMouseEvent &event)
|
||||
// currently unused events
|
||||
void DropDown::sendDropDownEvent()
|
||||
{
|
||||
selection = hover_item;
|
||||
wxCommandEvent event(wxEVT_COMBOBOX, GetId());
|
||||
event.SetEventObject(this);
|
||||
event.SetInt(selection);
|
||||
event.SetInt(hover_item);
|
||||
event.SetString(GetValue());
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user