Browse Source

Minor bug fix:

The main window, will never be visible, when the user unchecked 'Show system try' and checked 'Start in tray'.
pull/762/merge
Maximilian 11 years ago committed by Tux3 / Mlkj / !Lev.uXFMLA
parent
commit
b97e66d589
  1. 6
      src/widget/widget.cpp

6
src/widget/widget.cpp

@ -98,10 +98,12 @@ void Widget::init() @@ -98,10 +98,12 @@ void Widget::init()
if (Settings::getInstance().getShowSystemTray()){
icon->show();
if(Settings::getInstance().getAutostartInTray() == false)
this->show();
}
if(Settings::getInstance().getAutostartInTray() == false)
else
this->show();
}
else
{

Loading…
Cancel
Save