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

Do not do anything when middle clicking on the tray

This commit is contained in:
Anatoliy Zinovyev 2015-11-25 12:11:31 -05:00
parent fc462e82df
commit 6bbca9341d

View File

@ -734,9 +734,7 @@ void Widget::confirmExecutableOpen(const QFileInfo &file)
void Widget::onIconClick(QSystemTrayIcon::ActivationReason reason)
{
switch (reason)
{
case QSystemTrayIcon::Trigger:
if (reason == QSystemTrayIcon::Trigger)
{
if (isHidden() || isMinimized())
{
@ -756,22 +754,10 @@ void Widget::onIconClick(QSystemTrayIcon::ActivationReason reason)
wasMaximized = isMaximized();
hide();
}
break;
}
case QSystemTrayIcon::MiddleClick:
wasMaximized = isMaximized();
if (Settings::getInstance().getMinimizeToTray())
hide();
else
showMinimized();
break;
case QSystemTrayIcon::Unknown:
if (isHidden())
else if (reason == QSystemTrayIcon::Unknown)
{
forceShow();
break;
default:
break;
}
}