diff --git a/Modules/TopBar/TopBar.qml b/Modules/TopBar/TopBar.qml index 6680c4cc..a643946d 100644 --- a/Modules/TopBar/TopBar.qml +++ b/Modules/TopBar/TopBar.qml @@ -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() } }