From f2c401b02fe4ba68bffbe463a8a0ab3737125495 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sun, 25 Jul 2021 08:46:21 +0300 Subject: [PATCH] always show/hide applets popups properly --- shell/package/contents/applet/CompactApplet.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell/package/contents/applet/CompactApplet.qml b/shell/package/contents/applet/CompactApplet.qml index aa5ebf4a6..d646012db 100644 --- a/shell/package/contents/applet/CompactApplet.qml +++ b/shell/package/contents/applet/CompactApplet.qml @@ -129,9 +129,11 @@ PlasmaCore.ToolTipArea { } }*/ + //! This timer is needed in order for the applet popup to not reshow instantly and faulty after the user + //! clicks compact representation to hide it Timer { id: expandedSync - interval: 100 + interval: 500 onTriggered: plasmoid.expanded = popupWindow.visible; }