浏览代码

Show new error message even if it is the same as the last

Malte Veerman 6 年之前
父节点
当前提交
73ba7cb023
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      import/src/guibase.cpp

+ 1 - 1
import/src/guibase.cpp

@@ -259,7 +259,7 @@ void GUIBase::reset()
 
 void GUIBase::handleError(const QString &error, bool critical)
 {
-    if (error.isEmpty() || error == m_error)
+    if (error.isEmpty())
         return;
 
     m_error = error;