mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
make qml keyboard work better in running-scripts dialog
This commit is contained in:
parent
b841e3094d
commit
2c0676d9b1
1 changed files with 4 additions and 2 deletions
|
@ -24,8 +24,8 @@ ScrollingWindow {
|
|||
title: "Running Scripts"
|
||||
resizable: true
|
||||
destroyOnHidden: true
|
||||
implicitWidth: 424
|
||||
implicitHeight: isHMD ? 695 : 728
|
||||
implicitWidth: 480
|
||||
implicitHeight: (isHMD ? 695 : 728) + (runningScriptsColumn.keyboardRaised ? 200 + (2 * hifi.dimensions.contentSpacing.y) : 0)
|
||||
minSize: Qt.vector2d(424, 300)
|
||||
|
||||
HifiConstants { id: hifi }
|
||||
|
@ -93,6 +93,8 @@ ScrollingWindow {
|
|||
}
|
||||
|
||||
Column {
|
||||
id: runningScriptsColumn
|
||||
|
||||
property bool keyboardRaised: false
|
||||
property bool punctuationMode: false
|
||||
|
||||
|
|
Loading…
Reference in a new issue