aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/UpdateGUI.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}