File tree Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Original file line number Diff line number Diff line change @@ -352,6 +352,7 @@ QML_RES_QML = \
352
352
qml/pages/onboarding/OnboardingStorageAmount.qml \
353
353
qml/pages/onboarding/OnboardingStorageLocation.qml \
354
354
qml/pages/onboarding/OnboardingStrengthen.qml \
355
+ qml/pages/onboarding/OnboardingWizard.qml \
355
356
qml/pages/settings/SettingsAbout.qml \
356
357
qml/pages/settings/SettingsConnection.qml \
357
358
qml/pages/settings/SettingsDeveloper.qml \
Original file line number Diff line number Diff line change 34
34
<file>pages/onboarding/OnboardingStorageAmount.qml</file>
35
35
<file>pages/onboarding/OnboardingStorageLocation.qml</file>
36
36
<file>pages/onboarding/OnboardingStrengthen.qml</file>
37
+ <file>pages/onboarding/OnboardingWizard.qml</file>
37
38
<file>pages/settings/SettingsAbout.qml</file>
38
39
<file>pages/settings/SettingsConnection.qml</file>
39
40
<file>pages/settings/SettingsDeveloper.qml</file>
Original file line number Diff line number Diff line change @@ -26,18 +26,7 @@ ApplicationWindow {
26
26
27
27
Component {
28
28
id: onboardingWizard
29
- SwipeView {
30
- id: swipeView
31
- property bool finished: false
32
- interactive: false
33
-
34
- OnboardingCover {}
35
- OnboardingStrengthen {}
36
- OnboardingBlockclock {}
37
- OnboardingStorageLocation {}
38
- OnboardingStorageAmount {}
39
- OnboardingConnection {}
40
-
29
+ OnboardingWizard {
41
30
onFinishedChanged: main .push (node)
42
31
}
43
32
}
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2023 The Bitcoin Core developers
2
+ // Distributed under the MIT software license, see the accompanying
3
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
+
5
+ import QtQuick 2.15
6
+ import QtQuick.Controls 2.15
7
+
8
+ SwipeView {
9
+ id: swipeView
10
+ property bool finished: false
11
+ interactive: false
12
+
13
+ OnboardingCover {}
14
+ OnboardingStrengthen {}
15
+ OnboardingBlockclock {}
16
+ OnboardingStorageLocation {}
17
+ OnboardingStorageAmount {}
18
+ OnboardingConnection {}
19
+ }
You can’t perform that action at this time.
0 commit comments