mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 23:49:55 +02:00
MS15501: Fix keyboard in Create -> Model in HMD
This commit is contained in:
parent
765850eee1
commit
6b59b5b53c
1 changed files with 3 additions and 1 deletions
|
@ -24,6 +24,7 @@ Rectangle {
|
||||||
color: hifi.colors.baseGray;
|
color: hifi.colors.baseGray;
|
||||||
signal sendToScript(var message);
|
signal sendToScript(var message);
|
||||||
property bool keyboardEnabled: false
|
property bool keyboardEnabled: false
|
||||||
|
property bool keyboardRaised: false
|
||||||
property bool punctuationMode: false
|
property bool punctuationMode: false
|
||||||
property bool keyboardRasied: false
|
property bool keyboardRasied: false
|
||||||
|
|
||||||
|
@ -235,10 +236,11 @@ Rectangle {
|
||||||
|
|
||||||
Keyboard {
|
Keyboard {
|
||||||
id: keyboard
|
id: keyboard
|
||||||
raised: parent.keyboardEnabled
|
raised: parent.keyboardEnabled && parent.keyboardRaised
|
||||||
numeric: parent.punctuationMode
|
numeric: parent.punctuationMode
|
||||||
anchors {
|
anchors {
|
||||||
bottom: parent.bottom
|
bottom: parent.bottom
|
||||||
|
bottomMargin: 40
|
||||||
left: parent.left
|
left: parent.left
|
||||||
right: parent.right
|
right: parent.right
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue