Procházet zdrojové kódy

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

Malte Veerman před 6 roky
rodič
revize
73ba7cb023
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;