From cb804c9f97466264fe1e4872e1815f07a3629698 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Wed, 25 Mar 2020 19:19:59 +0200 Subject: [PATCH] fix all task indicators for bouncing animations --make task indicators properly placed when tasks are bouncing --- plasmoid/package/contents/ui/task/indicator/Loader.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plasmoid/package/contents/ui/task/indicator/Loader.qml b/plasmoid/package/contents/ui/task/indicator/Loader.qml index 37307f7c0..968430cb0 100644 --- a/plasmoid/package/contents/ui/task/indicator/Loader.qml +++ b/plasmoid/package/contents/ui/task/indicator/Loader.qml @@ -58,10 +58,10 @@ Loader { return root.vertical ? taskItem.wrapperAlias.height - 2*taskItem.wrapperAlias.mScale*root.lengthExtMargin : taskItem.wrapperAlias.height; } - readonly property bool locked: inAttentionAnimation || inNewWindowAnimation + readonly property bool locked: inAttentionAnimation || inNewWindowAnimation || inBouncingAnimation - property real visualLockedWidth: root.iconSize + root.internalWidthMargins - property real visualLockedHeight: root.iconSize + root.internalHeightMargins + property real visualLockedWidth: root.vertical ? root.screenEdgeMargin + root.iconSize + root.internalWidthMargins : root.iconSize + root.internalWidthMargins + property real visualLockedHeight: !root.vertical ? root.screenEdgeMargin + root.iconSize + root.internalHeightMargins : root.iconSize + root.internalHeightMargins //! Connections !//