diff --git a/shell/Commons/Style.qml b/shell/Commons/Style.qml index 11fb7d73..32a78f49 100644 --- a/shell/Commons/Style.qml +++ b/shell/Commons/Style.qml @@ -344,7 +344,7 @@ QtObject { readonly property int iconSlot: root.barToken("icon-slot", 27) readonly property int iconCanvas: root.barToken("icon-canvas", 16) readonly property int iconFont: root.barToken("icon-font", 13) - readonly property int statusSlot: root.barToken("status-slot", 18) + readonly property int statusSlot: root.barToken("status-slot", 21) } function refresh() { diff --git a/shell/Ui/BarIndicator.qml b/shell/Ui/BarIndicator.qml index c0c313b3..67709e1d 100644 --- a/shell/Ui/BarIndicator.qml +++ b/shell/Ui/BarIndicator.qml @@ -46,6 +46,6 @@ BarIconButton { fontSize: Style.font.caption horizontalMargin: 5 verticalPadding: 5 - fixedWidth: -1 - fixedHeight: -1 + fixedWidth: vertical ? -1 : Style.bar.statusSlot + fixedHeight: vertical ? Style.bar.statusSlot : -1 }