Show "Copied to clipboard" message only when copying after tray icon click.

This commit is contained in:
Gres 2015-09-30 21:05:02 +03:00
parent 54f809707c
commit 6358629269

View File

@ -261,6 +261,9 @@ void Manager::processTrayAction (QSystemTrayIcon::ActivationReason reason) {
} }
else if (reason == QSystemTrayIcon::MiddleClick && clipboardAction_->isEnabled ()) { else if (reason == QSystemTrayIcon::MiddleClick && clipboardAction_->isEnabled ()) {
copyLastToClipboard (); copyLastToClipboard ();
trayIcon_->showMessage (tr ("Результат"),
tr ("Последний результат был скопирован в буфер обмена."),
QSystemTrayIcon::Information);
} }
else if (reason == QSystemTrayIcon::DoubleClick && repeatCaptureAction_->isEnabled ()) { else if (reason == QSystemTrayIcon::DoubleClick && repeatCaptureAction_->isEnabled ()) {
repeatCapture (); repeatCapture ();
@ -283,9 +286,6 @@ void Manager::copyLastToClipboard () {
message += " - " + item.translated; message += " - " + item.translated;
} }
clipboard->setText (message); clipboard->setText (message);
trayIcon_->showMessage (tr ("Результат"),
tr ("Последний результат был скопирован в буфер обмена."),
QSystemTrayIcon::Information);
} }
} }