Commit dc90f4b9 authored by Don Gagne's avatar Don Gagne

Add help text

Remove nigh load/save
parent 7303aafc
...@@ -153,14 +153,6 @@ QGCView { ...@@ -153,14 +153,6 @@ QGCView {
onTriggered: controller.setMissionItems() onTriggered: controller.setMissionItems()
} }
MenuItem {
text: "Load mission items from disk"
}
MenuItem {
text: "Save mission items to disk"
}
} }
} }
...@@ -198,6 +190,17 @@ QGCView { ...@@ -198,6 +190,17 @@ QGCView {
onMoveDown: controller.moveDown(object.sequenceNumber) onMoveDown: controller.moveDown(object.sequenceNumber)
} }
} // ListView } // ListView
QGCLabel {
anchors.topMargin: _verticalMargin
anchors.left: parent.left
anchors.right: parent.right
anchors.top: toolsButton.bottom
anchors.bottom: parent.bottom
visible: controller.missionItems.count == 0
wrapMode: Text.WordWrap
text: "Click in the map to add Mission Items"
}
} // Item } // Item
} // Rectangle - mission item list } // Rectangle - mission item list
} // Item - split view container } // Item - split view container
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment