mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
When clicking "Ignore for this session", make message box handler return true, so asserts can actually be skipped with this option
This commit is contained in:
parent
e792a67dc6
commit
7045c68327
@ -68,7 +68,10 @@ static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (button == QMessageBox::Ignore)
|
if (button == QMessageBox::Ignore)
|
||||||
|
{
|
||||||
Common::SetEnableAlert(false);
|
Common::SetEnableAlert(false);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user