From 460a6dc649e01d63e98348bd7c9dc83ca1d3f711 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 7 Apr 2021 14:33:23 -0400 Subject: [PATCH] fix: right click on app icon now always shows menu Fixes #2152 --- ui/main.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/main.qml b/ui/main.qml index ba3495d160..b4cdf8b5da 100644 --- a/ui/main.qml +++ b/ui/main.qml @@ -135,6 +135,9 @@ ApplicationWindow { } onActivated: { + if (reason === SystemTrayIcon.Context) { + return + } applicationWindow.show() applicationWindow.raise() applicationWindow.requestActivate()