diff --git a/.config/quickshell/ReloadPopup.qml b/.config/quickshell/ReloadPopup.qml index a0927d5b..ddd12bc8 100644 --- a/.config/quickshell/ReloadPopup.qml +++ b/.config/quickshell/ReloadPopup.qml @@ -38,8 +38,8 @@ Scope { anchors.top: true margins.top: 0 - width: rect.width + shadow.radius * 2 - height: rect.height + shadow.radius * 2 + implicitWidth: rect.width + shadow.radius * 2 + implicitHeight: rect.height + shadow.radius * 2 // color blending is a bit odd as detailed in the type reference. color: "transparent" diff --git a/.config/quickshell/modules/bar/Bar.qml b/.config/quickshell/modules/bar/Bar.qml index 15cd9a84..fb5535e3 100644 --- a/.config/quickshell/modules/bar/Bar.qml +++ b/.config/quickshell/modules/bar/Bar.qml @@ -30,7 +30,7 @@ Scope { screen: modelData WlrLayershell.namespace: "quickshell:bar" - height: barHeight + Appearance.rounding.screenRounding + implicitHeight: barHeight + Appearance.rounding.screenRounding exclusiveZone: showBarBackground ? barHeight : (barHeight - 4) mask: Region { item: barContent diff --git a/.config/quickshell/modules/notificationPopup/NotificationPopup.qml b/.config/quickshell/modules/notificationPopup/NotificationPopup.qml index e21f5ed0..ec8f2c5e 100644 --- a/.config/quickshell/modules/notificationPopup/NotificationPopup.qml +++ b/.config/quickshell/modules/notificationPopup/NotificationPopup.qml @@ -39,7 +39,7 @@ Scope { } color: "transparent" - width: Appearance.sizes.notificationPopupWidth + implicitWidth: Appearance.sizes.notificationPopupWidth // Signal handlers to add/remove notifications Connections { diff --git a/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayBrightness.qml b/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayBrightness.qml index 57a741e1..8740c356 100644 --- a/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayBrightness.qml +++ b/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayBrightness.qml @@ -63,8 +63,8 @@ Scope { item: osdValuesWrapper } - width: columnLayout.implicitWidth - height: columnLayout.implicitHeight + implicitWidth: columnLayout.implicitWidth + implicitHeight: columnLayout.implicitHeight visible: showOsdValues ColumnLayout { diff --git a/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayVolume.qml b/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayVolume.qml index 8f7541e6..7206fdfd 100644 --- a/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayVolume.qml +++ b/.config/quickshell/modules/onScreenDisplay/OnScreenDisplayVolume.qml @@ -67,8 +67,8 @@ Scope { item: osdValuesWrapper } - width: columnLayout.implicitWidth - height: columnLayout.implicitHeight + implicitWidth: columnLayout.implicitWidth + implicitHeight: columnLayout.implicitHeight visible: showOsdValues ColumnLayout { diff --git a/.config/quickshell/modules/overview/Overview.qml b/.config/quickshell/modules/overview/Overview.qml index d734ff93..ec687583 100644 --- a/.config/quickshell/modules/overview/Overview.qml +++ b/.config/quickshell/modules/overview/Overview.qml @@ -68,8 +68,8 @@ Scope { } } - width: columnLayout.width - height: columnLayout.height + implicitWidth: columnLayout.width + implicitHeight: columnLayout.height ColumnLayout { id: columnLayout diff --git a/.config/quickshell/modules/session/Session.qml b/.config/quickshell/modules/session/Session.qml index ff08dfdd..b0db8cc9 100644 --- a/.config/quickshell/modules/session/Session.qml +++ b/.config/quickshell/modules/session/Session.qml @@ -37,8 +37,8 @@ Scope { right: true } - width: modelData.width - height: modelData.height + implicitWidth: modelData.width + implicitHeight: modelData.height HyprlandFocusGrab { id: grab diff --git a/.config/quickshell/modules/sidebarLeft/SidebarLeft.qml b/.config/quickshell/modules/sidebarLeft/SidebarLeft.qml index 204fd1ef..9a523122 100644 --- a/.config/quickshell/modules/sidebarLeft/SidebarLeft.qml +++ b/.config/quickshell/modules/sidebarLeft/SidebarLeft.qml @@ -37,7 +37,7 @@ Scope { // Scope screen: modelData exclusiveZone: 0 - width: Appearance.sizes.sidebarWidthExtended + implicitWidth: Appearance.sizes.sidebarWidthExtended WlrLayershell.namespace: "quickshell:sidebarLeft" WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive color: "transparent" diff --git a/.config/quickshell/modules/sidebarRight/SidebarRight.qml b/.config/quickshell/modules/sidebarRight/SidebarRight.qml index 8b08af8e..b7892f3c 100644 --- a/.config/quickshell/modules/sidebarRight/SidebarRight.qml +++ b/.config/quickshell/modules/sidebarRight/SidebarRight.qml @@ -34,7 +34,7 @@ Scope { screen: modelData exclusiveZone: 0 - width: sidebarWidth + implicitWidth: sidebarWidth WlrLayershell.namespace: "quickshell:sidebarRight" WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive color: "transparent"