mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 09:37:29 +02:00
Make sure keyboard will be rised after lowering on another click
This commit is contained in:
parent
c3bc67b72d
commit
feafd441b1
1 changed files with 25 additions and 0 deletions
|
@ -87,6 +87,14 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onPressed: {
|
||||||
|
sendSignalToWallet({method: 'walletSetup_raiseKeyboard'});
|
||||||
|
mouse.accepted = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
passphraseField.focus = true;
|
passphraseField.focus = true;
|
||||||
}
|
}
|
||||||
|
@ -106,6 +114,14 @@ Item {
|
||||||
activeFocusOnPress: true;
|
activeFocusOnPress: true;
|
||||||
activeFocusOnTab: true;
|
activeFocusOnTab: true;
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onPressed: {
|
||||||
|
sendSignalToWallet({method: 'walletSetup_raiseKeyboard'});
|
||||||
|
mouse.accepted = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onFocusChanged: {
|
onFocusChanged: {
|
||||||
if (focus) {
|
if (focus) {
|
||||||
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard'});
|
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard'});
|
||||||
|
@ -118,6 +134,7 @@ Item {
|
||||||
passphraseFieldAgain.focus = true;
|
passphraseFieldAgain.focus = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
HifiControlsUit.TextField {
|
HifiControlsUit.TextField {
|
||||||
id: passphraseFieldAgain;
|
id: passphraseFieldAgain;
|
||||||
colorScheme: hifi.colorSchemes.dark;
|
colorScheme: hifi.colorSchemes.dark;
|
||||||
|
@ -131,6 +148,14 @@ Item {
|
||||||
activeFocusOnPress: true;
|
activeFocusOnPress: true;
|
||||||
activeFocusOnTab: true;
|
activeFocusOnTab: true;
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onPressed: {
|
||||||
|
sendSignalToWallet({method: 'walletSetup_raiseKeyboard'});
|
||||||
|
mouse.accepted = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onFocusChanged: {
|
onFocusChanged: {
|
||||||
if (focus) {
|
if (focus) {
|
||||||
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard'});
|
sendMessageToLightbox({method: 'walletSetup_raiseKeyboard'});
|
||||||
|
|
Loading…
Reference in a new issue