Skip to content

Commit 74d4a97

Browse files
committed
qml: rename to CaretRightIcon
1 parent 0fa582d commit 74d4a97

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

src/Makefile.qt.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ QML_RES_QML = \
343343
qml/components/BlockClock.qml \
344344
qml/components/BlockClockDisplayMode.qml \
345345
qml/components/BlockCounter.qml \
346-
qml/components/CaretRightButton.qml \
346+
qml/controls/CaretRightIcon.qml \
347347
qml/components/ConnectionOptions.qml \
348348
qml/components/ConnectionSettings.qml \
349349
qml/components/DeveloperOptions.qml \

src/qml/bitcoin_qml.qrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<file>components/BlockClock.qml</file>
55
<file>components/BlockClockDisplayMode.qml</file>
66
<file>components/BlockCounter.qml</file>
7-
<file>components/CaretRightButton.qml</file>
7+
<file>controls/CaretRightIcon.qml</file>
88
<file>components/ConnectionOptions.qml</file>
99
<file>components/ConnectionSettings.qml</file>
1010
<file>components/PeersIndicator.qml</file>

src/qml/components/AboutOptions.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ColumnLayout {
6565
Layout.fillWidth: true
6666
header: qsTr("Developer options")
6767
description: qsTr("Only use these if you have development experience")
68-
actionItem: CaretRightButton {
68+
actionItem: CaretRightIcon {
6969
color: gotoDeveloper.stateColor
7070
}
7171
onClicked: {

src/qml/components/ConnectionSettings.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ ColumnLayout {
6666
id: gotoProxy
6767
Layout.fillWidth: true
6868
header: qsTr("Proxy settings")
69-
actionItem: CaretRightButton {
69+
actionItem: CaretRightIcon {
7070
color: gotoProxy.stateColor
7171
}
7272
onClicked: connectionSwipe.incrementCurrentIndex()

src/qml/components/CaretRightButton.qml renamed to src/qml/controls/CaretRightIcon.qml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import QtQuick 2.15
66
import QtQuick.Controls 2.15
7-
import "../controls"
87

98
Icon {
109
source: "image://images/caret-right"

src/qml/pages/node/NodeSettings.qml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Item {
4141
id: gotoAbout
4242
Layout.fillWidth: true
4343
header: qsTr("About")
44-
actionItem: CaretRightButton {
44+
actionItem: CaretRightIcon {
4545
color: gotoAbout.stateColor
4646
}
4747
onClicked: {
@@ -53,7 +53,7 @@ Item {
5353
id: gotoDisplay
5454
Layout.fillWidth: true
5555
header: qsTr("Display")
56-
actionItem: CaretRightButton {
56+
actionItem: CaretRightIcon {
5757
color: gotoDisplay.stateColor
5858
}
5959
onClicked: {
@@ -65,7 +65,7 @@ Item {
6565
id: gotoStorage
6666
Layout.fillWidth: true
6767
header: qsTr("Storage")
68-
actionItem: CaretRightButton {
68+
actionItem: CaretRightIcon {
6969
color: gotoStorage.stateColor
7070
}
7171
onClicked: {
@@ -77,7 +77,7 @@ Item {
7777
id: gotoConnection
7878
Layout.fillWidth: true
7979
header: qsTr("Connection")
80-
actionItem: CaretRightButton {
80+
actionItem: CaretRightIcon {
8181
color: gotoConnection.stateColor
8282
}
8383
onClicked: {
@@ -89,7 +89,7 @@ Item {
8989
id: gotoPeers
9090
Layout.fillWidth: true
9191
header: qsTr("Peers")
92-
actionItem: CaretRightButton {
92+
actionItem: CaretRightIcon {
9393
color: gotoPeers.stateColor
9494
}
9595
onClicked: {
@@ -102,7 +102,7 @@ Item {
102102
id: gotoNetworkTraffic
103103
Layout.fillWidth: true
104104
header: qsTr("Network Traffic")
105-
actionItem: CaretRightButton {
105+
actionItem: CaretRightIcon {
106106
color: gotoNetworkTraffic.stateColor
107107
}
108108
onClicked: {

src/qml/pages/settings/SettingsDisplay.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Item {
4040
id: gotoTheme
4141
Layout.fillWidth: true
4242
header: qsTr("Theme")
43-
actionItem: CaretRightButton {
43+
actionItem: CaretRightIcon {
4444
color: gotoTheme.stateColor
4545
}
4646
onClicked: {
@@ -52,7 +52,7 @@ Item {
5252
id: gotoBlockClockSize
5353
Layout.fillWidth: true
5454
header: qsTr("Block clock display mode")
55-
actionItem: CaretRightButton {
55+
actionItem: CaretRightIcon {
5656
color: gotoBlockClockSize.stateColor
5757
}
5858
onClicked: {

0 commit comments

Comments
 (0)