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
commit 73a9b4148b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
});