File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -336,6 +336,7 @@ QML_RES_QML = \
336
336
qml/components/DeveloperOptions.qml \
337
337
qml/components/PeersIndicator.qml \
338
338
qml/components/NetworkIndicator.qml \
339
+ qml/components/Separator.qml \
339
340
qml/components/StorageLocations.qml \
340
341
qml/components/StorageOptions.qml \
341
342
qml/components/StorageSettings.qml \
Original file line number Diff line number Diff line change 10
10
<file>components/DeveloperOptions.qml</file>
11
11
<file>components/NetworkIndicator.qml</file>
12
12
<file>components/StorageLocations.qml</file>
13
+ <file>components/Separator.qml</file>
13
14
<file>components/StorageOptions.qml</file>
14
15
<file>components/StorageSettings.qml</file>
15
16
<file>controls/ContinueButton.qml</file>
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
+ import "../controls"
8
+
9
+ Rectangle {
10
+ height: 1
11
+ color: Theme .color .neutral5
12
+ }
You can’t perform that action at this time.
0 commit comments