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
This commit is contained in:
purian23
2026-07-17 08:24:37 -04:00
parent ed44d02202
commit 4cb09dcc1b
+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)