QML UI: add second action to GPS list entries

This one will allow people to see the location on a map. Also not implemented,
yet.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-01-08 23:17:48 -08:00
parent f61b83301a
commit 038cfcba91
3 changed files with 8 additions and 0 deletions

View file

@ -92,6 +92,12 @@ MobileComponents.Page {
onTriggered: {
print("delete this!")
}
},
Action {
iconName: "gps"
onTriggered: {
print("show map")
}
}
]