From 5a0bb260b44fc79b8da49c7fccf6418ab37ffde8 Mon Sep 17 00:00:00 2001 From: bbedward Date: Tue, 10 Feb 2026 09:56:20 -0500 Subject: [PATCH] popout: only scale texture size on DPR > 1 --- quickshell/Widgets/DankPopout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Widgets/DankPopout.qml b/quickshell/Widgets/DankPopout.qml index ac1726b1..306f9161 100644 --- a/quickshell/Widgets/DankPopout.qml +++ b/quickshell/Widgets/DankPopout.qml @@ -443,7 +443,7 @@ Item { layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1" layer.smooth: false - layer.textureSize: Qt.size(Math.ceil(width * root.dpr), Math.ceil(height * root.dpr)) + layer.textureSize: root.dpr > 1 ? Qt.size(Math.ceil(width * root.dpr), Math.ceil(height * root.dpr)) : Qt.size(0, 0) layer.effect: MultiEffect { id: shadowFx