@@ -, +, @@ Also set minimum size when it *is* constrained BUG: 309447 FIXED-IN: 4.11.0 --- a/plasma/generic/applets/batterymonitor/contents/ui/batterymonitor.qml 2013-05-28 20:38:22.000000000 +0200 +++ a/plasma/generic/applets/batterymonitor/contents/ui/batterymonitor.qml 2013-06-04 21:15:26.234102844 +0200 @@ -70,8 +70,12 @@ Component.onCompleted: { if (!isConstrained()) { - minimumWidth = 32; - minimumHeight = 32; + minimumWidth = theme.iconSizes.dialog; + minimumHeight = minimumHeight * view.count; + } else { + // NOTE: Keep in sync with systray + minimumHeight = 24; + minimumWidth = 24; } plasmoid.addEventListener('ConfigChanged', configChanged); }