1
0

use fixed font on amount, address fields

This commit is contained in:
Sander van Grieken
2022-03-29 16:54:20 +02:00
parent 758a30462e
commit 756cd9706f
2 changed files with 6 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ Pane {
id: address
Layout.columnSpan: 2
Layout.fillWidth: true
font.family: FixedFont
placeholderText: qsTr('Paste address or invoice')
}
@@ -39,6 +40,7 @@ Pane {
TextField {
id: amount
font.family: FixedFont
placeholderText: qsTr('Amount')
}
@@ -56,6 +58,7 @@ Pane {
TextField {
id: fee
font.family: FixedFont
placeholderText: qsTr('sat/vB')
Layout.columnSpan: 3
}