File tree Expand file tree Collapse file tree 7 files changed +12
-13
lines changed Expand file tree Collapse file tree 7 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ QML_RES_QML = \
343
343
qml/components/BlockClock.qml \
344
344
qml/components/BlockClockDisplayMode.qml \
345
345
qml/components/BlockCounter.qml \
346
- qml/components/CaretRightButton .qml \
346
+ qml/controls/CaretRightIcon .qml \
347
347
qml/components/ConnectionOptions.qml \
348
348
qml/components/ConnectionSettings.qml \
349
349
qml/components/DeveloperOptions.qml \
Original file line number Diff line number Diff line change 4
4
<file>components/BlockClock.qml</file>
5
5
<file>components/BlockClockDisplayMode.qml</file>
6
6
<file>components/BlockCounter.qml</file>
7
- <file>components/CaretRightButton .qml</file>
7
+ <file>controls/CaretRightIcon .qml</file>
8
8
<file>components/ConnectionOptions.qml</file>
9
9
<file>components/ConnectionSettings.qml</file>
10
10
<file>components/PeersIndicator.qml</file>
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ ColumnLayout {
65
65
Layout .fillWidth : true
66
66
header: qsTr (" Developer options" )
67
67
description: qsTr (" Only use these if you have development experience" )
68
- actionItem: CaretRightButton {
68
+ actionItem: CaretRightIcon {
69
69
color: gotoDeveloper .stateColor
70
70
}
71
71
onClicked: {
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ ColumnLayout {
66
66
id: gotoProxy
67
67
Layout .fillWidth : true
68
68
header: qsTr (" Proxy settings" )
69
- actionItem: CaretRightButton {
69
+ actionItem: CaretRightIcon {
70
70
color: gotoProxy .stateColor
71
71
}
72
72
onClicked: connectionSwipe .incrementCurrentIndex ()
Original file line number Diff line number Diff line change 4
4
5
5
import QtQuick 2.15
6
6
import QtQuick.Controls 2.15
7
- import "../controls"
8
7
9
8
Icon {
10
9
source: " image://images/caret-right"
Original file line number Diff line number Diff line change 41
41
id: gotoAbout
42
42
Layout .fillWidth : true
43
43
header: qsTr (" About" )
44
- actionItem: CaretRightButton {
44
+ actionItem: CaretRightIcon {
45
45
color: gotoAbout .stateColor
46
46
}
47
47
onClicked: {
53
53
id: gotoDisplay
54
54
Layout .fillWidth : true
55
55
header: qsTr (" Display" )
56
- actionItem: CaretRightButton {
56
+ actionItem: CaretRightIcon {
57
57
color: gotoDisplay .stateColor
58
58
}
59
59
onClicked: {
65
65
id: gotoStorage
66
66
Layout .fillWidth : true
67
67
header: qsTr (" Storage" )
68
- actionItem: CaretRightButton {
68
+ actionItem: CaretRightIcon {
69
69
color: gotoStorage .stateColor
70
70
}
71
71
onClicked: {
77
77
id: gotoConnection
78
78
Layout .fillWidth : true
79
79
header: qsTr (" Connection" )
80
- actionItem: CaretRightButton {
80
+ actionItem: CaretRightIcon {
81
81
color: gotoConnection .stateColor
82
82
}
83
83
onClicked: {
89
89
id: gotoPeers
90
90
Layout .fillWidth : true
91
91
header: qsTr (" Peers" )
92
- actionItem: CaretRightButton {
92
+ actionItem: CaretRightIcon {
93
93
color: gotoPeers .stateColor
94
94
}
95
95
onClicked: {
@@ -102,7 +102,7 @@ Item {
102
102
id: gotoNetworkTraffic
103
103
Layout .fillWidth : true
104
104
header: qsTr (" Network Traffic" )
105
- actionItem: CaretRightButton {
105
+ actionItem: CaretRightIcon {
106
106
color: gotoNetworkTraffic .stateColor
107
107
}
108
108
onClicked: {
Original file line number Diff line number Diff line change 40
40
id: gotoTheme
41
41
Layout .fillWidth : true
42
42
header: qsTr (" Theme" )
43
- actionItem: CaretRightButton {
43
+ actionItem: CaretRightIcon {
44
44
color: gotoTheme .stateColor
45
45
}
46
46
onClicked: {
52
52
id: gotoBlockClockSize
53
53
Layout .fillWidth : true
54
54
header: qsTr (" Block clock display mode" )
55
- actionItem: CaretRightButton {
55
+ actionItem: CaretRightIcon {
56
56
color: gotoBlockClockSize .stateColor
57
57
}
58
58
onClicked: {
You can’t perform that action at this time.
0 commit comments