summaryrefslogtreecommitdiff
path: root/modules/bar/Content.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-27 10:42:08 +0800
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-27 10:42:08 +0800
commit63da636144635e5aa6b7ff1a2d2eec2a1e35aafa (patch)
treecd5461058c7afedb2d17f474f13ee218759519ba /modules/bar/Content.qml
parentdrawers: dont use hyprland cursor pos (diff)
downloadcaelestia-shell-63da636144635e5aa6b7ff1a2d2eec2a1e35aafa.tar.gz
caelestia-shell-63da636144635e5aa6b7ff1a2d2eec2a1e35aafa.tar.bz2
caelestia-shell-63da636144635e5aa6b7ff1a2d2eec2a1e35aafa.zip
internal: bar only vertical
The bar can only be vertical Remove box, boxlayout and anchortext Add StyledClippingRect
Diffstat (limited to 'modules/bar/Content.qml')
-rw-r--r--modules/bar/Content.qml14
1 files changed, 1 insertions, 13 deletions
diff --git a/modules/bar/Content.qml b/modules/bar/Content.qml
index 4149521..ac828f8 100644
--- a/modules/bar/Content.qml
+++ b/modules/bar/Content.qml
@@ -24,8 +24,6 @@ StyledRect {
Item {
id: child
- readonly property bool vertical: true
-
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.right: parent.right
@@ -40,7 +38,7 @@ StyledRect {
anchors.topMargin: Appearance.padding.large
}
- ClippingRectangle {
+ StyledClippingRect {
id: workspaces
anchors.horizontalCenter: parent.horizontalCenter
@@ -57,16 +55,6 @@ StyledRect {
id: workspacesInner
anchors.centerIn: parent
-
- vertical: true
- }
-
- Behavior on color {
- ColorAnimation {
- duration: Appearance.anim.durations.normal
- easing.type: Easing.BezierSpline
- easing.bezierCurve: Appearance.anim.curves.standard
- }
}
}