mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +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
|
||||
//
|
||||
|
@ -206,7 +207,7 @@ Window {
|
|||
}
|
||||
|
||||
onKeyboardRaisedChanged: {
|
||||
if (parent.KeyboardEnabled && keyboardRaised) {
|
||||
if (keyboardEnabled && keyboardRaised) {
|
||||
var delta = activator.mouseY
|
||||
- (activator.height + activator.y - 200 - footerContentHeight - hifi.dimensions.controlLineHeight);
|
||||
|
||||
|
|
Loading…
Reference in a new issue