From 2de7ac26d5c39d9a85e6c03fb00c50113e26a341 Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 13 Jan 2019 23:23:41 +0100 Subject: [PATCH] set minimize to tray icon default to false because some systems do not support it --- retroshare-gui/src/gui/settings/GeneralPage.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroshare-gui/src/gui/settings/GeneralPage.cpp b/retroshare-gui/src/gui/settings/GeneralPage.cpp index c67d8b751..67cd4490c 100755 --- a/retroshare-gui/src/gui/settings/GeneralPage.cpp +++ b/retroshare-gui/src/gui/settings/GeneralPage.cpp @@ -79,6 +79,8 @@ GeneralPage::GeneralPage(QWidget * parent, Qt::WindowFlags flags) : ui.autoLogin->setToolTip(tr("Your RetroShare build has auto-login disabled.")); #endif // RS_AUTOLOGIN + ui.checkCloseToTray->setChecked(false) ; // default should be false because some systems to not support this. + /* Connect signals */ connect(ui.useLocalServer, SIGNAL(toggled(bool)), this,SLOT(updateUseLocalServer())) ; connect(ui.idleSpinBox, SIGNAL(valueChanged(int)), this,SLOT(updateMaxTimeBeforeIdle())) ;