diff --git a/electrum/gui/qml/components/BalanceSummary.qml b/electrum/gui/qml/components/BalanceSummary.qml index f5170dabe..24c664300 100644 --- a/electrum/gui/qml/components/BalanceSummary.qml +++ b/electrum/gui/qml/components/BalanceSummary.qml @@ -6,6 +6,7 @@ import QtQuick.Controls.Material 2.0 Frame { id: root height: layout.height + font.pixelSize: constants.fontSizeMedium property string formattedBalance property string formattedUnconfirmed @@ -29,20 +30,16 @@ Frame { text: formattedBalance } Label { - font.pixelSize: constants.fontSizeMedium text: qsTr('Confirmed: ') } Label { - font.pixelSize: constants.fontSizeMedium color: Material.accentColor text: formattedBalance } Label { - font.pixelSize: constants.fontSizeMedium text: qsTr('Unconfirmed: ') } Label { - font.pixelSize: constants.fontSizeMedium color: Material.accentColor text: formattedUnconfirmed } diff --git a/electrum/gui/qml/components/main.qml b/electrum/gui/qml/components/main.qml index d3fb48f74..71bbaf2bd 100644 --- a/electrum/gui/qml/components/main.qml +++ b/electrum/gui/qml/components/main.qml @@ -107,6 +107,7 @@ ApplicationWindow id: menuButton enabled: stack.currentItem.menu !== undefined && stack.currentItem.menu.count > 0 text: enabled ? qsTr("≡") : '' + font.pixelSize: constants.fontSizeXLarge onClicked: { stack.currentItem.menu.open() // position the menu to the right diff --git a/electrum/gui/qml/components/wizard/WCConfirmSeed.qml b/electrum/gui/qml/components/wizard/WCConfirmSeed.qml index 5fb5b613c..a6b21d81e 100644 --- a/electrum/gui/qml/components/wizard/WCConfirmSeed.qml +++ b/electrum/gui/qml/components/wizard/WCConfirmSeed.qml @@ -44,7 +44,6 @@ WizardComponent { id: customwordstext Layout.fillWidth: true placeholderText: qsTr('Enter your custom word(s)') - echoMode: TextInput.Password onTextChanged: { checkValid() } diff --git a/electrum/gui/qml/components/wizard/WCCreateSeed.qml b/electrum/gui/qml/components/wizard/WCCreateSeed.qml index d62614aab..28fe2e0c7 100644 --- a/electrum/gui/qml/components/wizard/WCCreateSeed.qml +++ b/electrum/gui/qml/components/wizard/WCCreateSeed.qml @@ -69,7 +69,6 @@ WizardComponent { visible: extendcb.checked Layout.fillWidth: true placeholderText: qsTr('Enter your custom word(s)') - echoMode: TextInput.Password } Component.onCompleted : { setWarningText(12) diff --git a/electrum/gui/qml/components/wizard/WCHaveSeed.qml b/electrum/gui/qml/components/wizard/WCHaveSeed.qml index 87df6262b..b305bc173 100644 --- a/electrum/gui/qml/components/wizard/WCHaveSeed.qml +++ b/electrum/gui/qml/components/wizard/WCHaveSeed.qml @@ -126,7 +126,6 @@ WizardComponent { Layout.fillWidth: true Layout.columnSpan: 2 placeholderText: qsTr('Enter your custom word(s)') - echoMode: TextInput.Password } } } diff --git a/electrum/gui/qml/components/wizard/Wizard.qml b/electrum/gui/qml/components/wizard/Wizard.qml index b89d78291..4ce028ddf 100644 --- a/electrum/gui/qml/components/wizard/Wizard.qml +++ b/electrum/gui/qml/components/wizard/Wizard.qml @@ -166,7 +166,7 @@ Dialog { // so the keyboard goes away // TODO: here it works on desktop, but not android. hmm. MouseArea { - anchors.fill: wizard + anchors.fill: parent z: -1000 onClicked: { parkFocus.focus = true } FocusScope { id: parkFocus }