QML UI: don't go through manager object to show map

We can open URLs in the browser directly from QML.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-04-02 07:09:40 -05:00
parent f677d482e9
commit 69c10808af
5 changed files with 11 additions and 15 deletions

View file

@ -54,7 +54,7 @@ Item {
anchors.fill: parent
onClicked: {
if (dive.gps !== "")
manager.showMap(dive.gps)
showMap(dive.gps)
}
}
}