X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a2053b27b318fe81918a72c838944d1e8cd1524f..d7dbc98ae97946a3d91e6653527fc72276d83712:/src/gtk/button.cpp?ds=inline diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp index 254056d770..140e4380ef 100644 --- a/src/gtk/button.cpp +++ b/src/gtk/button.cpp @@ -41,11 +41,12 @@ extern bool g_blockEventsOnDrag; static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button ) { - if (g_isIdle) wxapp_install_idle_handler(); + if (g_isIdle) + wxapp_install_idle_handler(); if (!button->m_hasVMT) return; if (g_blockEventsOnDrag) return; - + wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); event.SetEventObject(button); button->GetEventHandler()->ProcessEvent(event);