Browse Source

qml: no auto caps on import and master key controls

master
Sander van Grieken 3 years ago
parent
commit
5600375d51
  1. 2
      electrum/gui/qml/components/wizard/WCHaveMasterKey.qml
  2. 2
      electrum/gui/qml/components/wizard/WCImport.qml

2
electrum/gui/qml/components/wizard/WCHaveMasterKey.qml

@ -122,7 +122,7 @@ WizardComponent {
if (activeFocus)
verifyMasterKey(text)
}
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase
}
ColumnLayout {
ToolButton {

2
electrum/gui/qml/components/wizard/WCImport.qml

@ -40,7 +40,7 @@ WizardComponent {
focus: true
wrapMode: TextEdit.WrapAnywhere
onTextChanged: valid = verify(text)
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase
}
ColumnLayout {
Layout.alignment: Qt.AlignTop

Loading…
Cancel
Save