mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 05:58:27 +02:00
Fix field not scrolling into view when raise keyboard in settings
This commit is contained in:
parent
40bfbf4021
commit
2933e37a0a
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
//
|
//
|
||||||
// Window.qml
|
// Window.qml
|
||||||
//
|
//
|
||||||
|
@ -206,7 +207,7 @@ Window {
|
||||||
}
|
}
|
||||||
|
|
||||||
onKeyboardRaisedChanged: {
|
onKeyboardRaisedChanged: {
|
||||||
if (parent.KeyboardEnabled && keyboardRaised) {
|
if (keyboardEnabled && keyboardRaised) {
|
||||||
var delta = activator.mouseY
|
var delta = activator.mouseY
|
||||||
- (activator.height + activator.y - 200 - footerContentHeight - hifi.dimensions.controlLineHeight);
|
- (activator.height + activator.y - 200 - footerContentHeight - hifi.dimensions.controlLineHeight);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue