#6523 The auto hide feature was hidden, so this restores it

This commit is contained in:
walker0643 2018-01-30 16:55:34 -05:00 committed by Jnewbon
parent dd2c14a0fd
commit 2626c2c4cf
2 changed files with 8 additions and 19 deletions

View File

@ -207,7 +207,9 @@ void MainWindow::open()
{
createTrayIcon();
if (!autoHide()) {
if (appConfig().getAutoHide()) {
hide();
} else {
showNormal();
}
@ -545,18 +547,6 @@ void MainWindow::checkSecureSocket(const QString& line)
secureSocket(true);
}
}
bool MainWindow::autoHide()
{
if ((appConfig().processMode() == Desktop) &&
appConfig().getAutoHide()) {
hide();
return true;
}
return false;
}
QString MainWindow::getTimeStamp()
{
QDateTime current = QDateTime::currentDateTime();

View File

@ -196,7 +196,6 @@ public slots:
#ifndef SYNERGY_ENTERPRISE
void checkLicense(const QString& line);
#endif
bool autoHide();
QString getTimeStamp();
void restartSynergy();
void proofreadInfo();