diff --git a/containment/package/contents/ui/applet/AppletItem.qml b/containment/package/contents/ui/applet/AppletItem.qml index 9e16b2b6d..9b147bff7 100644 --- a/containment/package/contents/ui/applet/AppletItem.qml +++ b/containment/package/contents/ui/applet/AppletItem.qml @@ -934,7 +934,8 @@ Item { SequentialAnimation{ id: clickedAnimation alwaysRunToEnd: true - running: (appletItem.pressed) && (root.durationTime > 0) && !indicators.info.providesClickedAnimation + running: appletItem.isSquare && !originalAppletBehavior && appletItem.pressed + && (root.durationTime > 0) && !indicators.info.providesClickedAnimation ParallelAnimation{ PropertyAnimation { diff --git a/containment/package/contents/ui/applet/ItemWrapper.qml b/containment/package/contents/ui/applet/ItemWrapper.qml index fdd90d306..5b8e7980f 100644 --- a/containment/package/contents/ui/applet/ItemWrapper.qml +++ b/containment/package/contents/ui/applet/ItemWrapper.qml @@ -564,7 +564,7 @@ Item{ anchors.fill: _wrapperContainer source: _wrapperContainer - enabled: !indicators.info.providesHoveredAnimation && opacity != 0 ? true : false + enabled: appletItem.isSquare && !originalAppletBehavior && !indicators.info.providesHoveredAnimation && opacity != 0 ? true : false opacity: appletMouseArea.containsMouse ? 1 : 0 brightness: 0.25 contrast: 0.15