Browse Source

Correct background color

QGC4.4
Don Gagne 8 years ago
parent
commit
bff00f3264
  1. 2
      src/PlanView/GeoFenceEditor.qml
  2. 2
      src/PlanView/RallyPointEditorHeader.qml
  3. 2
      src/PlanView/RallyPointItemEditor.qml

2
src/PlanView/GeoFenceEditor.qml

@ -30,7 +30,7 @@ QGCFlickable { @@ -30,7 +30,7 @@ QGCFlickable {
width: parent.width
height: geoFenceItems.y + geoFenceItems.height + (_margin * 2)
radius: _radius
color: qgcPal.buttonHighlight
color: qgcPal.missionItemEditor
QGCLabel {
id: geoFenceLabel

2
src/PlanView/RallyPointEditorHeader.qml

@ -20,7 +20,7 @@ QGCFlickable { @@ -20,7 +20,7 @@ QGCFlickable {
width: parent.width
height: innerEditorRect.y + innerEditorRect.height + (_margin * 2)
radius: _radius
color: qgcPal.buttonHighlight
color: qgcPal.missionItemEditor
QGCLabel {
id: editorLabel

2
src/PlanView/RallyPointItemEditor.qml

@ -11,7 +11,7 @@ import QGroundControl.Palette 1.0 @@ -11,7 +11,7 @@ import QGroundControl.Palette 1.0
Rectangle {
id: root
height: _currentItem ? valuesRect.y + valuesRect.height + (_margin * 2) : titleBar.y - titleBar.height + _margin
color: _currentItem ? qgcPal.buttonHighlight : qgcPal.windowShade
color: _currentItem ? qgcPal.missionItemEditor : qgcPal.windowShade
radius: _radius
property var rallyPoint ///< RallyPoint object associated with editor

Loading…
Cancel
Save