internal: fix blurriness

This commit is contained in:
2 * r + 2 * t 2025-09-13 16:59:51 +10:00
parent 25508df016
commit c09d5a6c03
2 changed files with 22 additions and 14 deletions

View file

@ -122,25 +122,32 @@ Variants {
panels: panels panels: panels
bar: bar bar: bar
Panels { // FIXME: remove when Hyprland bug fixed
id: panels Item {
anchors.fill: parent
anchors.rightMargin: 1
anchors.bottomMargin: 1
screen: scope.modelData Panels {
visibilities: visibilities id: panels
bar: bar
}
BarWrapper { screen: scope.modelData
id: bar visibilities: visibilities
bar: bar
}
anchors.top: parent.top BarWrapper {
anchors.bottom: parent.bottom id: bar
screen: scope.modelData anchors.top: parent.top
visibilities: visibilities anchors.bottom: parent.bottom
popouts: panels.popouts
Component.onCompleted: Visibilities.bars.set(scope.modelData, this) screen: scope.modelData
visibilities: visibilities
popouts: panels.popouts
Component.onCompleted: Visibilities.bars.set(scope.modelData, this)
}
} }
} }
} }

View file

@ -54,6 +54,7 @@ CustomMouseArea {
} }
anchors.fill: parent anchors.fill: parent
// FIXME: remove when Hyprland bug fixed
anchors.rightMargin: -1 anchors.rightMargin: -1
anchors.bottomMargin: -1 anchors.bottomMargin: -1
hoverEnabled: true hoverEnabled: true