Merge pull request #8257 from CookiePLMonster/assert-fixes

Fixes to assertions
This commit is contained in:
JosJuice
2019-07-22 08:47:13 +02:00
committed by GitHub
3 changed files with 15 additions and 20 deletions

View File

@ -68,7 +68,10 @@ static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no
return true;
if (button == QMessageBox::Ignore)
{
Common::SetEnableAlert(false);
return true;
}
return false;
});