mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
d9cfdc3b69
commit
72411eee63
1 changed files with 78 additions and 69 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue