Browse Source

Fix text coloring

QGC4.4
Don Gagne 8 years ago
parent
commit
01806fae61
  1. 3
      src/MissionEditor/MissionEditor.qml

3
src/MissionEditor/MissionEditor.qml

@ -583,6 +583,7 @@ QGCView {
exclusiveGroup: planElementSelectorGroup exclusiveGroup: planElementSelectorGroup
text: qsTr("Mission") text: qsTr("Mission")
checked: true checked: true
color: mapPal.text
} }
Item { height: 1; width: 1 } Item { height: 1; width: 1 }
@ -591,6 +592,7 @@ QGCView {
id: planElementGeoFence id: planElementGeoFence
exclusiveGroup: planElementSelectorGroup exclusiveGroup: planElementSelectorGroup
text: qsTr("Fence") text: qsTr("Fence")
color: mapPal.text
} }
Item { height: 1; width: 1 } Item { height: 1; width: 1 }
@ -599,6 +601,7 @@ QGCView {
id: planElementRallyPoints id: planElementRallyPoints
exclusiveGroup: planElementSelectorGroup exclusiveGroup: planElementSelectorGroup
text: qsTr("Rally") text: qsTr("Rally")
color: mapPal.text
} }
} // Row - Plan Element Selector } // Row - Plan Element Selector

Loading…
Cancel
Save