From 57dfcbcce77760722295ab56b9f407739a8ef619 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 3 Jun 2015 15:49:46 -0700 Subject: [PATCH] make sure to reset compactrep anchors --- shell/contents/applet/CompactApplet.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/contents/applet/CompactApplet.qml b/shell/contents/applet/CompactApplet.qml index 13afafa2..3a7e5622 100644 --- a/shell/contents/applet/CompactApplet.qml +++ b/shell/contents/applet/CompactApplet.qml @@ -35,6 +35,8 @@ Item { onCompactRepresentationChanged: { if (compactRepresentation) { compactRepresentation.parent = root; + compactRepresentation.anchors.fill = undefined; + compactRepresentation.anchors.right = undefined; compactRepresentation.anchors.left = root.left; compactRepresentation.anchors.top = root.top; compactRepresentation.width = units.iconSizes.medium;