diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-12-05 06:42:10 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-05 06:42:10 -0800 |
commit | b5fcfc8867e937ee4ecd607ea7c621b660954e53 (patch) | |
tree | 599d42a4918223308812fc20f6af08d79cc8114b /qt-mobile/qml/main.qml | |
parent | 5588268cb2450692838bf23eeed72747f669889b (diff) | |
download | subsurface-b5fcfc8867e937ee4ecd607ea7c621b660954e53.tar.gz |
QML-UI: a small bit of reindentation
For consistency. Still not sure what the best scheme is. QtCreator wants to be
pretty aggressive with how far things are indented. Not sure I'm in love with
that.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r-- | qt-mobile/qml/main.qml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index e8e65de67..6340b8667 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -69,27 +69,27 @@ MobileComponents.ApplicationWindow { MobileComponents.ActionGroup { text: "GPS" - Action { + Action { text: "Apply GPS data to dives" onTriggered: { - manager.applyGpsData(); + manager.applyGpsData(); } - } + } - Action { + Action { text: "Send GPS data to server" onTriggered: { - manager.sendGpsData(); + manager.sendGpsData(); } - } + } - Action { + Action { text: "Clear stored GPS data" onTriggered: { - manager.clearGpsData(); + manager.clearGpsData(); } - } - }, + } + }, Action { text: "View log" |