From f56d06d95d0614fb828cb6b9c823bedf127f73d9 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Tue, 21 Apr 2015 16:25:55 +0100 Subject: [PATCH] Disabled auto-hide feature #4390 --- src/gui/src/MainWindow.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/gui/src/MainWindow.cpp b/src/gui/src/MainWindow.cpp index 6ca2d549..16c92454 100644 --- a/src/gui/src/MainWindow.cpp +++ b/src/gui/src/MainWindow.cpp @@ -553,14 +553,6 @@ void MainWindow::startSynergy() if (desktopMode) { - if (!appConfig().startedBefore()) { - QMessageBox::information( - this, "Synergy", - tr("Synergy will be minimized to the notification " - "area. This will happen automatically when Synergy " - "starts.")); - } - synergyProcess()->start(app, args); if (!synergyProcess()->waitForStarted()) { @@ -818,12 +810,6 @@ void MainWindow::setSynergyState(qSynergyState state) setIcon(state); m_SynergyState = state; - - // if in desktop mode, hide synergy. in service mode the gui can - // just be closed. - if ((appConfig().processMode() == Desktop) && (state == synergyConnected)) { - hide(); - } } void MainWindow::setVisible(bool visible)