mirror of https://github.com/PCSX2/pcsx2.git
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.
This commit is contained in:
parent
3f39741d0a
commit
48745a3bc5
|
@ -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() )
|
||||
|
|
Loading…
Reference in New Issue