Merge pull request #9273 from thalieht/closetotray

Set "close to tray" to false as default
This commit is contained in:
Vladimir Golovnev
2018-08-03 11:16:50 +03:00
committed by GitHub

View File

@@ -185,7 +185,7 @@ void Preferences::setMinimizeToTray(bool b)
bool Preferences::closeToTray() const
{
return value("Preferences/General/CloseToTray", true).toBool();
return value("Preferences/General/CloseToTray", false).toBool();
}
void Preferences::setCloseToTray(bool b)