fix all task indicators for bouncing animations

--make task indicators properly placed when tasks
are bouncing
pull/16/head
Michail Vourlakos 5 years ago
parent 7759fff9ec
commit cb804c9f97

@ -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 !//

Loading…
Cancel
Save