Skip to content
Snippets Groups Projects
Commit a63f75c4 authored by Edric Milaret's avatar Edric Milaret Committed by gerrit2
Browse files

hide the mainwindow when start minimized has been checked

This should have been done in the first place. This is the
convention on Windows when we start an application minimized
it should not be displayed on taskbar but only as an icon in
the notification area.

Change-Id: If867e70bfa48be0db3ce6f55ca63b9a9f91bc401
Tuleap: #760
parent d2058453
No related branches found
No related tags found
No related merge requests found
...@@ -143,8 +143,10 @@ main(int argc, char *argv[]) ...@@ -143,8 +143,10 @@ main(int argc, char *argv[])
if (not startMinimized) if (not startMinimized)
MainWindow::instance().show(); MainWindow::instance().show();
else else {
MainWindow::instance().showMinimized(); MainWindow::instance().showMinimized();
MainWindow::instance().hide();
}
MainWindow::instance().createThumbBar(); MainWindow::instance().createThumbBar();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment