From 1f4e72e618b5fe12d2a1cbcaf3d7e2df3adf9838 Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Tue, 17 Jun 2014 16:12:42 +0200 Subject: [PATCH] Use standard icon sizes BUG: 336326 iconSize.small/2 is really wrong. If we randomly scale things what's the point of having an iconSize property in the first place. --- .../systemtray/package/contents/ui/ExpandedRepresentation.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/systemtray/package/contents/ui/ExpandedRepresentation.qml b/applets/systemtray/package/contents/ui/ExpandedRepresentation.qml index 520c7c8b3..e926fadf5 100644 --- a/applets/systemtray/package/contents/ui/ExpandedRepresentation.qml +++ b/applets/systemtray/package/contents/ui/ExpandedRepresentation.qml @@ -192,7 +192,7 @@ Item { PlasmaCore.IconItem { anchors.centerIn: parent source: pin.checked ? "window-unpin" : "window-pin" - width: units.iconSizes.small / 2 + width: units.iconSizes.small height: width active: pin.containsMouse }