Merge pull request #12676 from druiz17/fix-keyboard

fixing AddressManager keyboard when switching domains
This commit is contained in:
John Conklin II 2018-03-27 15:34:23 -07:00 committed by GitHub
commit a258a330d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,7 +113,6 @@ StackView {
id: addressBarDialog id: addressBarDialog
property bool keyboardEnabled: false property bool keyboardEnabled: false
property bool keyboardRaised: false
property bool punctuationMode: false property bool punctuationMode: false
width: parent.width width: parent.width
@ -401,11 +400,10 @@ StackView {
addressLine.text = ""; addressLine.text = "";
} }
} }
HifiControls.Keyboard { HifiControls.Keyboard {
id: keyboard id: keyboard
raised: parent.keyboardEnabled && parent.keyboardRaised raised: parent.keyboardEnabled
numeric: parent.punctuationMode numeric: parent.punctuationMode
anchors { anchors {
bottom: parent.bottom bottom: parent.bottom
@ -413,7 +411,7 @@ StackView {
right: parent.right right: parent.right
} }
} }
} }
function updateLocationText(enteringAddress) { function updateLocationText(enteringAddress) {