diff --git a/main.qml b/main.qml index fa4a66d..5c9a0df 100644 --- a/main.qml +++ b/main.qml @@ -308,11 +308,14 @@ ApplicationWindow { "The program will keep running in the system tray.\n" + "To terminate the program, choose \"Quit\" in the \n" + "context menu of the system tray entry."); - }, 7000); + }, 1500); } onActivated: function(reason) { console.log(reason); + if (reason == Labs.SystemTrayIcon.Context) { + return; + } if (window.visible) { window.hide(); return;