mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +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"
|
title: "Running Scripts"
|
||||||
resizable: true
|
resizable: true
|
||||||
destroyOnHidden: true
|
destroyOnHidden: true
|
||||||
implicitWidth: 424
|
implicitWidth: 480
|
||||||
implicitHeight: isHMD ? 695 : 728
|
implicitHeight: (isHMD ? 695 : 728) + (runningScriptsColumn.keyboardRaised ? 200 + (2 * hifi.dimensions.contentSpacing.y) : 0)
|
||||||
minSize: Qt.vector2d(424, 300)
|
minSize: Qt.vector2d(424, 300)
|
||||||
|
|
||||||
HifiConstants { id: hifi }
|
HifiConstants { id: hifi }
|
||||||
|
@ -93,6 +93,8 @@ ScrollingWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
|
id: runningScriptsColumn
|
||||||
|
|
||||||
property bool keyboardRaised: false
|
property bool keyboardRaised: false
|
||||||
property bool punctuationMode: false
|
property bool punctuationMode: false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue