mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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>
This commit is contained in:
parent
5588268cb2
commit
b5fcfc8867
1 changed files with 10 additions and 10 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue