Browse Source

Fixed loader saving to old config path instead of new one, if the new path didn't contain a valid config file.

Malte Veerman 7 years ago
parent
commit
5f0b587796
1 changed files with 1 additions and 1 deletions
  1. 1 1
      import/src/guibase.cpp

+ 1 - 1
import/src/guibase.cpp

@@ -184,7 +184,7 @@ void GUIBase::apply()
 {
     qInfo() << i18n("Applying changes");
 
-    bool configChanged = m_loader->save();
+    bool configChanged = m_loader->save(configUrl());
     m_config->save();
     m_configChanged = false;