From af94fe4965763fa1b5d5695fe0f8d7fb96a3e30e Mon Sep 17 00:00:00 2001 From: Mathieu Pellerin Date: Fri, 21 Jun 2024 11:23:01 +0700 Subject: [PATCH] Fix color of text and button elements in the navigation to geometry bar --- src/qml/NavigationInformationView.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/qml/NavigationInformationView.qml b/src/qml/NavigationInformationView.qml index 5c5984656e..7561dc27e9 100644 --- a/src/qml/NavigationInformationView.qml +++ b/src/qml/NavigationInformationView.qml @@ -64,6 +64,7 @@ Rectangle { round: true bgcolor: "transparent" iconSource: Theme.getThemeIcon("ic_chevron_left_white_24dp") + iconColor: Theme.mainTextColor onPressed: { navigation.previousDestinationVertex() @@ -87,7 +88,7 @@ Rectangle { font: Theme.strongTipFont elide: Text.ElideMiddle wrapMode: Text.NoWrap - color: "#FFFFFF" + color: Theme.mainTextColor text: navigation.destinationName } @@ -100,6 +101,7 @@ Rectangle { round: true bgcolor: "transparent" iconSource: Theme.getThemeIcon("ic_chevron_right_white_24dp") + iconColor: Theme.mainTextColor onPressed: { navigation.nextDestinationVertex()