From c1b53f0a90a747aa2fbc77f2a16756e0ac167410 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 14 Feb 2019 10:42:25 +0100 Subject: [PATCH] Change header color in about window This makes it work for both light & dark theme --- resources/qml/Dialogs/AboutDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 9a92bcbe1f..604cbc16ba 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -28,7 +28,7 @@ UM.Dialog anchors.topMargin: - margin anchors.horizontalCenter: parent.horizontalCenter - color: UM.Theme.getColor("viewport_background") + color: UM.Theme.getColor("main_window_header_background") } Image @@ -52,7 +52,7 @@ UM.Dialog text: catalog.i18nc("@label","version: %1").arg(UM.Application.version) font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") + color: UM.Theme.getColor("button_text") anchors.right : logo.right anchors.top: logo.bottom anchors.topMargin: (UM.Theme.getSize("default_margin").height / 2) | 0