Skip to content

Commit 1a8b696

Browse files
committed
qml: Reduce size of recipient selectors
1 parent 34706bb commit 1a8b696

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

qml/controls/NavButton.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ AbstractButton {
5353
}
5454
contentItem: RowLayout {
5555
spacing: 0
56+
anchors.fill: parent
5657
Loader {
5758
id: button_background
5859
active: root.iconSource.toString().length > 0

qml/pages/wallet/Send.qml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,18 @@ PageStack {
9292
visible: settings.multipleRecipientsEnabled
9393

9494
NavButton {
95+
Layout.preferredWidth: 30
96+
Layout.preferredHeight: 30
97+
iconWidth: 30
98+
iconHeight: 30
9599
iconSource: "image://images/caret-left"
96100
}
97101

98102
NavButton {
103+
Layout.preferredWidth: 30
104+
Layout.preferredHeight: 30
105+
iconWidth: 30
106+
iconHeight: 30
99107
iconSource: "image://images/caret-right"
100108
}
101109

0 commit comments

Comments
 (0)