Browse Source

use fixed font on amount, address fields

patch-4
Sander van Grieken 3 years ago
parent
commit
756cd9706f
  1. 4
      electrum/gui/qml/components/Receive.qml
  2. 3
      electrum/gui/qml/components/Send.qml

4
electrum/gui/qml/components/Receive.qml

@ -1,6 +1,6 @@
import QtQuick 2.6
import QtQuick.Layouts 1.0
import QtQuick.Controls 2.0
import QtQuick.Controls 2.14
import QtQuick.Controls.Material 2.0
import org.electrum 1.0
@ -36,6 +36,7 @@ Pane {
TextField {
id: amount
font.family: FixedFont
Layout.fillWidth: true
}
@ -78,6 +79,7 @@ Pane {
TextField {
id: amountFiat
font.family: FixedFont
Layout.fillWidth: true
}

3
electrum/gui/qml/components/Send.qml

@ -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
}

Loading…
Cancel
Save