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
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
BarWrapper {
id: bar
screen: scope.modelData
visibilities: visibilities
bar: bar
}
anchors.top: parent.top
anchors.bottom: parent.bottom
BarWrapper {
id: bar
screen: scope.modelData
visibilities: visibilities
popouts: panels.popouts
anchors.top: parent.top
anchors.bottom: parent.bottom
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
// FIXME: remove when Hyprland bug fixed
anchors.rightMargin: -1
anchors.bottomMargin: -1
hoverEnabled: true