1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge branch 'pr1392'

This commit is contained in:
Dubslow 2015-03-16 17:35:21 -05:00
commit fc720f570d
No known key found for this signature in database
GPG Key ID: 3DB8E05315C220AA

View File

@ -433,23 +433,29 @@ void Widget::onIconClick(QSystemTrayIcon::ActivationReason reason)
{ {
show(); show();
activateWindow(); activateWindow();
showNormal();
} }
else if (isMinimized()) else if (isMinimized())
{ {
forceShow(); forceShow();
activateWindow();
showNormal();
} }
else else
{ {
if (Settings::getInstance().getMinimizeToTray())
hide(); hide();
else
showMinimized();
} }
break; break;
} }
case QSystemTrayIcon::DoubleClick:
forceShow();
break;
case QSystemTrayIcon::MiddleClick: case QSystemTrayIcon::MiddleClick:
if (Settings::getInstance().getMinimizeToTray())
hide(); hide();
else
showMinimized();
break; break;
case QSystemTrayIcon::Unknown: case QSystemTrayIcon::Unknown:
if (isHidden()) if (isHidden())