From 4cb09dcc1b5a82538c68c0f69304049764db6c3f Mon Sep 17 00:00:00 2001 From: purian23 Date: Fri, 17 Jul 2026 08:24:37 -0400 Subject: [PATCH] fix(DankSlideout): update textureSize for improved rendering - Fixes #2880 Port 1.5 --- quickshell/Widgets/DankSlideout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Widgets/DankSlideout.qml b/quickshell/Widgets/DankSlideout.qml index 80e20bb88..8b8697ddb 100644 --- a/quickshell/Widgets/DankSlideout.qml +++ b/quickshell/Widgets/DankSlideout.qml @@ -174,7 +174,7 @@ PanelWindow { id: contentRect layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1" layer.smooth: false - layer.textureSize: Qt.size(width * root.dpr, height * root.dpr) + layer.textureSize: Qt.size(0, 0) opacity: 1 readonly property color slideoutSurfaceColor: root.customTransparency >= 0 ? Theme.withAlpha(Theme.surfaceContainer, root.customTransparency) : Theme.popupLayerColor(Theme.surfaceContainer)