From 48745a3bc58600351b42cb5b73e85cce2e59b54f Mon Sep 17 00:00:00 2001 From: Jonathan Li Date: Sun, 23 Aug 2015 23:29:46 +0100 Subject: [PATCH] Ignore "Do not show dialog again" checkbox when cancelled It's undesirable to not be able to reboot or change plugin if you checked the checkbox and then pressed Cancel. --- pcsx2/gui/Dialogs/ConfirmationDialogs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/Dialogs/ConfirmationDialogs.cpp b/pcsx2/gui/Dialogs/ConfirmationDialogs.cpp index 70d1f3e48a..9c91ffab9d 100644 --- a/pcsx2/gui/Dialogs/ConfirmationDialogs.cpp +++ b/pcsx2/gui/Dialogs/ConfirmationDialogs.cpp @@ -204,7 +204,7 @@ wxWindowID pxIssueConfirmation( wxDialogWithHelpers& confirmDlg, const MsgButton int modalResult = pxIssueConfirmation( confirmDlg, buttons ); - if( cfg != NULL ) + if( modalResult != wxID_CANCEL && cfg != NULL ) { wxString cfgResult = ResultToString( modalResult, buttons ); if( DisablerCtrl->IsChecked() && !cfgResult.IsEmpty() )