The keyboard should appear at the bottom of the screen.

This commit is contained in:
Alexander Ivash 2018-05-31 00:59:22 +03:00
parent 3f86f3d91f
commit 939749e084
3 changed files with 1 additions and 34 deletions

View file

@ -17,7 +17,7 @@ Rectangle {
HifiControls.Keyboard {
id: keyboard
z: 100
z: 1000
raised: parent.keyboardEnabled && parent.keyboardRaised
numeric: parent.punctuationMode
anchors {

View file

@ -11,10 +11,6 @@ Rectangle {
color: Qt.rgba(0, 0, 0, 0.5);
z: 999;
property bool keyboardEnabled: true
property bool keyboardRaised: false
property bool punctuationMode: false
property string titleText: 'Create Favorite'
property string favoriteNameText: favoriteName.text
property string avatarImageUrl: null
@ -138,18 +134,6 @@ Rectangle {
}
}
}
HifiControlsUit.Keyboard {
id: keyboard
raised: root.keyboardEnabled && root.keyboardRaised
numeric: root.punctuationMode
anchors {
top: avatarThumbnail.bottom
topMargin: 20
left: parent.left
right: parent.right
}
}
}
DialogButtons {

View file

@ -11,10 +11,6 @@ Rectangle {
color: Qt.rgba(0, 0, 0, 0.5);
z: 999;
property bool keyboardEnabled: true
property bool keyboardRaised: false
property bool punctuationMode: false
property string titleText: ''
property string bodyText: ''
property alias inputText: input;
@ -151,19 +147,6 @@ Rectangle {
anchors.left: parent.left;
anchors.right: parent.right;
}
HifiControlsUit.Keyboard {
id: keyboard
z: 100
raised: root.keyboardEnabled && root.keyboardRaised
numeric: root.punctuationMode
anchors {
top: input.bottom
topMargin: 20
left: parent.left
right: parent.right
}
}
}
DialogButtons {