Browse Source

Merge pull request #9273 from thalieht/closetotray

Set "close to tray" to false as default
adaptive-webui-19844
Vladimir Golovnev 6 years ago committed by GitHub
parent
commit
d106d908ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/base/preferences.cpp

2
src/base/preferences.cpp

@ -185,7 +185,7 @@ void Preferences::setMinimizeToTray(bool b) @@ -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)

Loading…
Cancel
Save