File tree Expand file tree Collapse file tree 7 files changed +38
-34
lines changed Expand file tree Collapse file tree 7 files changed +38
-34
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,25 @@ Page {
46
46
subtext: qsTr (" 100% open-source & open-design" )
47
47
buttonText: qsTr (" Start" )
48
48
}
49
- SettingsAbout {}
50
- SettingsDeveloper {}
49
+ SettingsAbout {
50
+ navLeftDetail: NavButton {
51
+ iconSource: " image://images/caret-left"
52
+ text: qsTr (" Back" )
53
+ onClicked: {
54
+ introductions .decrementCurrentIndex ()
55
+ swipeView .inSubPage = false
56
+ }
57
+ }
58
+ }
59
+ SettingsDeveloper {
60
+ navLeftDetail: NavButton {
61
+ iconSource: " image://images/caret-left"
62
+ text: qsTr (" Back" )
63
+ onClicked: {
64
+ introductions .decrementCurrentIndex ()
65
+ swipeView .inSubPage = true
66
+ }
67
+ }
68
+ }
51
69
}
52
70
}
Original file line number Diff line number Diff line change @@ -52,6 +52,14 @@ Page {
52
52
}
53
53
buttonText: qsTr (" Next" )
54
54
}
55
- SettingsStorage {}
55
+ SettingsStorage {
56
+ navRightDetail: NavButton {
57
+ text: qsTr (" Done" )
58
+ onClicked: {
59
+ storages .decrementCurrentIndex ()
60
+ swipeView .inSubPage = false
61
+ }
62
+ }
63
+ }
56
64
}
57
65
}
Original file line number Diff line number Diff line change @@ -50,6 +50,14 @@ Page {
50
50
lastPage: true
51
51
buttonText: qsTr (" Next" )
52
52
}
53
- SettingsConnection {}
53
+ SettingsConnection {
54
+ navRightDetail: NavButton {
55
+ text: qsTr (" Done" )
56
+ onClicked: {
57
+ connections .decrementCurrentIndex ()
58
+ swipeView .inSubPage = false
59
+ }
60
+ }
61
+ }
54
62
}
55
63
}
Original file line number Diff line number Diff line change @@ -10,14 +10,6 @@ import "../../components"
10
10
11
11
InformationPage {
12
12
Layout .fillWidth : true
13
- navLeftDetail: NavButton {
14
- iconSource: " image://images/caret-left"
15
- text: qsTr (" Back" )
16
- onClicked: {
17
- introductions .decrementCurrentIndex ()
18
- swipeView .inSubPage = false
19
- }
20
- }
21
13
bannerActive: false
22
14
bold: true
23
15
headerText: qsTr (" About" )
Original file line number Diff line number Diff line change @@ -12,13 +12,6 @@ InformationPage {
12
12
background: null
13
13
Layout .fillWidth : true
14
14
clip: true
15
- navRightDetail: NavButton {
16
- text: qsTr (" Done" )
17
- onClicked: {
18
- connections .decrementCurrentIndex ()
19
- swipeView .inSubPage = false
20
- }
21
- }
22
15
bannerActive: false
23
16
bold: true
24
17
headerText: qsTr (" Connection settings" )
Original file line number Diff line number Diff line change @@ -10,14 +10,6 @@ import "../../components"
10
10
11
11
InformationPage {
12
12
Layout .fillWidth : true
13
- navLeftDetail: NavButton {
14
- iconSource: " image://images/caret-left"
15
- text: qsTr (" Back" )
16
- onClicked: {
17
- introductions .decrementCurrentIndex ()
18
- swipeView .inSubPage = true
19
- }
20
- }
21
13
bannerActive: false
22
14
bold: true
23
15
headerText: qsTr (" Developer options" )
Original file line number Diff line number Diff line change @@ -10,13 +10,6 @@ import "../../components"
10
10
11
11
InformationPage {
12
12
Layout .fillWidth : true
13
- navRightDetail: NavButton {
14
- text: qsTr (" Done" )
15
- onClicked: {
16
- storages .decrementCurrentIndex ()
17
- swipeView .inSubPage = false
18
- }
19
- }
20
13
bannerActive: false
21
14
bold: true
22
15
headerText: qsTr (" Storage settings" )
You can’t perform that action at this time.
0 commit comments