summaryrefslogtreecommitdiff
path: root/modules/drawers/Drawers.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-13 16:59:51 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-13 16:59:51 +1000
commitc09d5a6c036f779891dfa133f1cafef453e17117 (patch)
treecd1b16b4f327674cb8768a04fcccec6a85741b26 /modules/drawers/Drawers.qml
parentinternal: use templates (diff)
downloadcaelestia-shell-c09d5a6c036f779891dfa133f1cafef453e17117.tar.gz
caelestia-shell-c09d5a6c036f779891dfa133f1cafef453e17117.tar.bz2
caelestia-shell-c09d5a6c036f779891dfa133f1cafef453e17117.zip
internal: fix blurriness
Diffstat (limited to 'modules/drawers/Drawers.qml')
-rw-r--r--modules/drawers/Drawers.qml35
1 files changed, 21 insertions, 14 deletions
diff --git a/modules/drawers/Drawers.qml b/modules/drawers/Drawers.qml
index 648e280..858a47d 100644
--- a/modules/drawers/Drawers.qml
+++ b/modules/drawers/Drawers.qml
@@ -122,25 +122,32 @@ Variants {
panels: panels
bar: bar
- Panels {
- id: panels
+ // FIXME: remove when Hyprland bug fixed
+ Item {
+ anchors.fill: parent
+ anchors.rightMargin: 1
+ anchors.bottomMargin: 1
- screen: scope.modelData
- visibilities: visibilities
- bar: bar
- }
+ Panels {
+ id: panels
+
+ screen: scope.modelData
+ visibilities: visibilities
+ bar: bar
+ }
- BarWrapper {
- id: bar
+ BarWrapper {
+ id: bar
- anchors.top: parent.top
- anchors.bottom: parent.bottom
+ anchors.top: parent.top
+ anchors.bottom: parent.bottom
- screen: scope.modelData
- visibilities: visibilities
- popouts: panels.popouts
+ screen: scope.modelData
+ visibilities: visibilities
+ popouts: panels.popouts
- Component.onCompleted: Visibilities.bars.set(scope.modelData, this)
+ Component.onCompleted: Visibilities.bars.set(scope.modelData, this)
+ }
}
}
}