Skip to content

Commit 120d630

Browse files
committed
qml: Reduce size of recipient selectors
1 parent 64a16d5 commit 120d630

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/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

src/qml/pages/wallet/Send.qml

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

9191
NavButton {
92+
Layout.preferredWidth: 30
93+
Layout.preferredHeight: 30
94+
iconWidth: 30
95+
iconHeight: 30
9296
iconSource: "image://images/caret-left"
9397
}
9498

9599
NavButton {
100+
Layout.preferredWidth: 30
101+
Layout.preferredHeight: 30
102+
iconWidth: 30
103+
iconHeight: 30
96104
iconSource: "image://images/caret-right"
97105
}
98106

0 commit comments

Comments
 (0)