This commit is contained in:
Zacharias-Brohn
2025-11-28 20:05:30 +01:00
parent 55bc4ea048
commit e90abf5620
2 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ Scope {
Region {
required property Item modelData
x: modelData.x + 9
x: modelData.x
y: modelData.y + backgroundRect.implicitHeight
width: modelData.width
height: panels.popouts.hasCurrent ? modelData.height + 70 : 0
+8 -7
View File
@@ -15,6 +15,14 @@ Item {
anchors.top: parent.top
anchors.bottom: parent.bottom
implicitWidth: workspacesRow.implicitWidth + 10
Behavior on implicitWidth {
NumberAnimation {
duration: MaterialEasing.expressiveEffectsTime
easing.bezierCurve: MaterialEasing.expressiveEffects
}
}
Rectangle {
id: root
@@ -38,13 +46,6 @@ Item {
color: Config.useDynamicColors ? DynamicColors.tPalette.m3surfaceContainer : "#40000000"
radius: height / 2
Behavior on implicitWidth {
NumberAnimation {
duration: 100
easing.type: Easing.InOutQuad
}
}
Behavior on color {
CAnim {}
}