taskbar: fix capsule height

This commit is contained in:
Lemmy
2026-01-28 23:30:14 -05:00
parent fa71530d79
commit fbab3e3405
+2 -2
View File
@@ -607,7 +607,7 @@ Item {
return Math.round(calculatedWidth);
}
readonly property real contentHeight: visible ? (isVerticalBar ? Math.round(taskbarLayout.implicitHeight + Style.marginS * 2) : barHeight) : 0
readonly property real contentHeight: visible ? (isVerticalBar ? Math.round(taskbarLayout.implicitHeight + Style.marginS * 2) : capsuleHeight) : 0
implicitWidth: contentWidth
implicitHeight: contentHeight
@@ -786,7 +786,7 @@ Item {
visible: shouldShowTitle
anchors.centerIn: parent
width: parent.width
height: root.barHeight
height: root.capsuleHeight
color: titleBgColor
radius: Style.radiusM