logic: errorview fix non index errors, use filepath instead of string in

commandline parser

<description>
This commit is contained in:
Andreas Stallinger
2016-10-17 11:19:39 +02:00
parent 730eebe13a
commit 4e0ebaef12
4 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -252,7 +252,7 @@ bool QtErrorView::isShownError(const StorageError& error)
{
return true;
}
if (error.fatal && !error.indexed && m_showNonIndexedErrors->checkState() == Qt::Checked)
if (!error.fatal && !error.indexed && m_showNonIndexedErrors->checkState() == Qt::Checked)
{
return true;
}