From ce46de1eefb9f328421586a8efdbea755d3d0e62 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Fri, 1 Dec 2017 08:27:08 +0100 Subject: force an app quit if the user wants so --- src/UpdateGUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/UpdateGUI.cpp b/src/UpdateGUI.cpp index 8547719..ff6697e 100644 --- a/src/UpdateGUI.cpp +++ b/src/UpdateGUI.cpp @@ -156,7 +156,7 @@ void UpdateGUIFrame::OnClose(wxCloseEvent& event) wxYES_NO | wxCENTRE | wxICON_QUESTION); dlg.SetYesNoLabels("&Quit", "&Don't quit"); switch (dlg.ShowModal()) { - case wxID_YES: break; + case wxID_YES: Destroy(); return; case wxID_NO: default: dlg.Destroy(); return; } -- cgit v1.2.3