From 51f879d2a2dabeb474637797cfd755ec6286b67e Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Thu, 9 Nov 2017 17:42:19 +0200 Subject: [PATCH] restore spacers on !containsMouse and inAttention --when the mouse leaves the dock and a task is inAttentionAnimation the spacers used for the animation should be restored --- plasmoid/package/contents/ui/task/TaskDelegate.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plasmoid/package/contents/ui/task/TaskDelegate.qml b/plasmoid/package/contents/ui/task/TaskDelegate.qml index d3c2c3d1f..3a92f347b 100644 --- a/plasmoid/package/contents/ui/task/TaskDelegate.qml +++ b/plasmoid/package/contents/ui/task/TaskDelegate.qml @@ -880,7 +880,8 @@ MouseArea{ if (root.globalDirectRender) wrapper.mScale = 1; - else if (!inAttentionAnimation && !inFastRestoreAnimation && !inMimicParabolicAnimation) + else if ((!inAttentionAnimation && !inFastRestoreAnimation && !inMimicParabolicAnimation) + || (latteDock && !latteDock.dockContainsMouse)) restoreAnimation.start(); }