mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 17:10:41 +02:00
remove keyboard-hiding logic as keyboard hides should be handled by focus change listener in 'onFocusObjectChanged' in the OffscreenQmlSurface
This commit is contained in:
parent
8a5904373b
commit
f7328f05fb
1 changed files with 0 additions and 6 deletions
|
@ -82,8 +82,6 @@ Item {
|
||||||
if (focus) {
|
if (focus) {
|
||||||
var hidePassword = (currentPassphraseField.echoMode === TextInput.Password);
|
var hidePassword = (currentPassphraseField.echoMode === TextInput.Password);
|
||||||
sendSignalToWallet({method: 'walletSetup_raiseKeyboard', isPasswordField: hidePassword});
|
sendSignalToWallet({method: 'walletSetup_raiseKeyboard', isPasswordField: hidePassword});
|
||||||
} else if (!passphraseFieldAgain.focus) {
|
|
||||||
sendSignalToWallet({method: 'walletSetup_lowerKeyboard', isPasswordField: false});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,8 +108,6 @@ Item {
|
||||||
if (focus) {
|
if (focus) {
|
||||||
var hidePassword = (passphraseField.echoMode === TextInput.Password);
|
var hidePassword = (passphraseField.echoMode === TextInput.Password);
|
||||||
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard', isPasswordField: hidePassword});
|
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard', isPasswordField: hidePassword});
|
||||||
} else if (!passphraseFieldAgain.focus) {
|
|
||||||
sendMessageToLightbox({method: 'walletSetup_lowerKeyboard', isPasswordField: false});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,8 +133,6 @@ Item {
|
||||||
if (focus) {
|
if (focus) {
|
||||||
var hidePassword = (passphraseFieldAgain.echoMode === TextInput.Password);
|
var hidePassword = (passphraseFieldAgain.echoMode === TextInput.Password);
|
||||||
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard', isPasswordField: hidePassword});
|
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard', isPasswordField: hidePassword});
|
||||||
} else if (!passphraseField.focus) {
|
|
||||||
sendMessageToLightbox({method: 'walletSetup_lowerKeyboard', isPasswordField: false});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue