Fix indentation

It's a bit all over the place. This makes it consistent and aligned.

Signed-off-by: Sebastian Kügler <sebas@kde.org>
This commit is contained in:
Sebastian Kügler 2015-12-04 00:26:45 +01:00
parent d9cfdc3b69
commit 72411eee63

View file

@ -40,21 +40,21 @@ MobileComponents.ApplicationWindow {
},
Action {
text: "Load dives from cloud"
text: "Load Dives"
onTriggered: {
manager.loadDives();
}
},
Action {
text: "Download dives from dive computer"
text: "Download Dives"
onTriggered: {
stackView.push(downloadDivesWindow)
}
},
Action {
text: "Add dive"
text: "Add Dive"
onTriggered: {
manager.addDive();
stackView.push(detailsWindow)
@ -62,7 +62,7 @@ MobileComponents.ApplicationWindow {
},
Action {
text: "Save changes"
text: "Save Changes"
onTriggered: {
manager.saveChanges();
}
@ -70,6 +70,14 @@ MobileComponents.ApplicationWindow {
MobileComponents.ActionGroup {
text: "GPS"
Action {
text: "Run location service"
checkable: true
checked: manager.locationServiceEnabled
onToggled: {
manager.locationServiceEnabled = checked;
}
}
Action {
text: "Apply GPS data to dives"
onTriggered: {
@ -93,19 +101,20 @@ MobileComponents.ApplicationWindow {
},
Action {
text: "View log"
text: "View Log"
onTriggered: {
stackView.push(logWindow)
}
},
Action {
text: "Theme information"
text: "Theme Information"
onTriggered: {
stackView.push(themetest)
}
}
]
] // end actions
MouseArea {
height: childrenRect.height
width: MobileComponents.Units.gridUnit * 10