1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-01 19:18:28 -04:00

fix(DankSlideout): update textureSize for improved rendering

- Fixes #2880
Port 1.5

(cherry picked from commit 4cb09dcc1b)
This commit is contained in:
purian23
2026-07-17 08:24:37 -04:00
committed by dms-ci[bot]
parent 64ba1fbb1b
commit 986a6e0230
+1 -1
View File
@@ -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)