1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

Correct top bar bg color

This commit is contained in:
bbedward
2025-09-25 08:36:23 -04:00
parent 1690e4f63b
commit 974dd70a06

View File

@@ -27,7 +27,6 @@ PanelWindow {
property real wingtipsRadius: Theme.cornerRadius
readonly property real _wingR: Math.max(0, wingtipsRadius)
readonly property color _bgColor: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, topBarCore.backgroundTransparency)
readonly property color _tintColor: Qt.rgba(Theme.surfaceTint.r, Theme.surfaceTint.g, Theme.surfaceTint.b, 0.04 * topBarCore.backgroundTransparency)
signal colorPickerRequested()
@@ -401,7 +400,7 @@ PanelWindow {
ctx.arcTo(0, 0, RT, 0, RT)
ctx.closePath()
ctx.fillStyle = root._tintColor
ctx.fillStyle = root._bgColor
ctx.fill()
}
}