Przeglądaj źródła

Set show tray option default to false.

Malte Veerman 6 lat temu
rodzic
commit
998782ad3f
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      import/src/config.cpp

+ 1 - 1
import/src/config.cpp

@@ -51,7 +51,7 @@ Config::Config(QObject *parent) : KCoreConfigSkeleton(KSharedConfig::openConfig(
     addItemStringList(QStringLiteral("Profiles"), m_profiles, QStringList());
     addItemStringList(QStringLiteral("ProfileNames"), m_profileNames, QStringList());
     addItemInt(QStringLiteral("CurrentProfile"), m_currentProfile, 0);
-    addItemBool(QStringLiteral("ShowTray"), m_showTray, true);
+    addItemBool(QStringLiteral("ShowTray"), m_showTray, false);
     addItemBool(QStringLiteral("StartMinimized"), m_startMinimized, false);
 
     load();