From f0b3be584489d821e27b126a68aa19c5b99749fd Mon Sep 17 00:00:00 2001 From: Anthony Fieroni Date: Tue, 21 Mar 2017 20:56:25 +0200 Subject: [PATCH] [kcm_kwindecoration] Respect theme colors in buttons https://phabricator.kde.org/D5116 Signed-off-by: Anthony Fieroni --- kcmkwin/kwindecoration/qml/Buttons.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kcmkwin/kwindecoration/qml/Buttons.qml b/kcmkwin/kwindecoration/qml/Buttons.qml index 64ab0f9be3..d8ca4258de 100644 --- a/kcmkwin/kwindecoration/qml/Buttons.qml +++ b/kcmkwin/kwindecoration/qml/Buttons.qml @@ -39,7 +39,7 @@ Item { anchors.fill: parent anchors.topMargin: units.gridUnit / 2 border.width: Math.ceil(units.gridUnit / 16.0) - color: SystemPalette.base; + color: backgroundColor; border.color: highlightColor; ColumnLayout { id: layout @@ -51,7 +51,7 @@ Item { Layout.fillWidth: true border.width: Math.ceil(units.gridUnit / 16.0) border.color: highlightColor - color: SystemPalette.base; + color: backgroundColor; RowLayout { id: buttonPreviewRow anchors.top: parent.top; @@ -194,7 +194,7 @@ Item { id: dragHint visible: !(leftButtonsView.dragging || rightButtonsView.dragging || availableGrid.dragging) Layout.fillWidth: true - color: SystemPalette.text; + color: backgroundColor; opacity: 0.66 horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignTop