1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-06 13:38:28 -04:00

qs: large sweep of dead code removals

This commit is contained in:
bbedward
2026-07-26 23:22:22 -04:00
parent bab2078dfd
commit c67b185076
113 changed files with 1467 additions and 3254 deletions
+7 -1
View File
@@ -177,7 +177,13 @@ PanelWindow {
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)
readonly property color slideoutSurfaceColor: {
if (root.customTransparency >= 0)
return Theme.withAlpha(Theme.surfaceContainer, root.customTransparency);
if (Theme.isConnectedEffect)
return Theme.connectedSurfaceColor;
return Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency);
}
anchors.top: parent.top
anchors.bottom: parent.bottom