mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 23:09:26 -05:00
overview: fix shadow cutoff
This commit is contained in:
@@ -80,8 +80,8 @@ Scope {
|
||||
}
|
||||
}
|
||||
|
||||
implicitWidth: columnLayout.width
|
||||
implicitHeight: columnLayout.height
|
||||
implicitWidth: columnLayout.implicitWidth
|
||||
implicitHeight: columnLayout.implicitHeight
|
||||
|
||||
function setSearchingText(text) {
|
||||
searchWidget.setSearchingText(text);
|
||||
|
||||
@@ -54,13 +54,14 @@ Item {
|
||||
}
|
||||
Rectangle { // Background
|
||||
id: overviewBackground
|
||||
|
||||
property real padding: 10
|
||||
anchors.fill: parent
|
||||
anchors.margins: Appearance.sizes.elevationMargin
|
||||
|
||||
implicitWidth: workspaceColumnLayout.implicitWidth + 5 * 2
|
||||
implicitHeight: workspaceColumnLayout.implicitHeight + 5 * 2
|
||||
implicitWidth: workspaceColumnLayout.implicitWidth + padding * 2
|
||||
implicitHeight: workspaceColumnLayout.implicitHeight + padding * 2
|
||||
radius: Appearance.rounding.screenRounding * root.scale + padding
|
||||
color: Appearance.colors.colLayer0
|
||||
radius: Appearance.rounding.screenRounding * root.scale + 5 * 2
|
||||
|
||||
ColumnLayout {
|
||||
id: workspaceColumnLayout
|
||||
|
||||
Reference in New Issue
Block a user