Skip to content

Commit

Permalink
Fix color of text and button elements in the navigation to geometry bar
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jun 21, 2024
1 parent 2b70bf2 commit 3ec0ac9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/qml/NavigationInformationView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Rectangle {
round: true
bgcolor: "transparent"
iconSource: Theme.getThemeIcon("ic_chevron_left_white_24dp")
iconColor: Theme.mainTextColor

onPressed: {
navigation.previousDestinationVertex()
Expand All @@ -87,7 +88,7 @@ Rectangle {
font: Theme.strongTipFont
elide: Text.ElideMiddle
wrapMode: Text.NoWrap
color: "#FFFFFF"
color: Theme.mainTextColor
text: navigation.destinationName
}

Expand All @@ -100,6 +101,7 @@ Rectangle {
round: true
bgcolor: "transparent"
iconSource: Theme.getThemeIcon("ic_chevron_right_white_24dp")
iconColor: Theme.mainTextColor

onPressed: {
navigation.nextDestinationVertex()
Expand Down

1 comment on commit 3ec0ac9

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.