summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnne Jan Brouwer <annejan@noprotocol.com>2015-08-06 10:43:06 +0200
committerAnne Jan Brouwer <annejan@noprotocol.com>2015-08-06 10:43:06 +0200
commitefc41f67e1c6e59b832dea7bb8c94508a6772bef (patch)
treed98dae9e586d32dbe070411db3d80c1a3aae4cbf
parentdc455cbca69661cd8fe26c25d9476ba2f502cd90 (diff)
removed inconsistency
-rw-r--r--mainwindow.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 29611828..3f2bdda6 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -228,8 +228,7 @@ bool MainWindow::checkConfig() {
initTrayIcon();
if (freshStart && startMinimized) {
// since we are still in constructor, can't directly hide
- QTimer::singleShot(10*autoclearSeconds, this, SLOT(hide()));
- QTimer::singleShot(10*autoclearPanelSeconds, this, SLOT(hide()));
+ QTimer::singleShot(10, this, SLOT(hide()));
}
} else if (!useTrayIcon && tray != NULL) {
destroyTrayIcon();