Index: applets/icon/package/contents/ui/main.qml =================================================================== --- applets/icon/package/contents/ui/main.qml +++ applets/icon/package/contents/ui/main.qml @@ -108,11 +108,12 @@ PlasmaCore.IconItem { id: icon - anchors{ + anchors { left: parent.left right: parent.right top: parent.top bottom: constrained ? parent.bottom : text.top + margins: inPanel ? 0.075 * Math.min(parent.width, parent.height) : 0 } source: plasmoid.icon enabled: root.enabled Index: applets/systemtray/package/contents/ui/main.qml =================================================================== --- applets/systemtray/package/contents/ui/main.qml +++ applets/systemtray/package/contents/ui/main.qml @@ -39,7 +39,7 @@ property var iconSizes: ["small", "smallMedium", "medium", "large", "huge", "enormous"]; property bool vertical: plasmoid.formFactor == PlasmaCore.Types.Vertical - property int itemSize: Math.min(0.8 * width, 0.8 * height, units.iconSizeHints.panel) + property int itemSize: Math.min(0.85 * width, 0.85 * height, units.iconSizeHints.panel) property int hiddenItemSize: units.iconSizes.smallMedium property alias expanded: dialog.visible property Item activeApplet