From 054370908130562edd617978fdf71a7338da0f3d Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Thu, 13 Apr 2017 16:10:36 -0700 Subject: [PATCH] Focus fix --- interface/resources/qml/hifi/tablet/TabletAddressDialog.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml b/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml index 620b1ace1c..801b279591 100644 --- a/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml +++ b/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml @@ -198,10 +198,11 @@ StackView { color: hifiStyleConstants.colors.lightGray opacity: 0.1 MouseArea { - anchors.fill: parent + anchors.fill: parent; onClicked: { if (!addressLine.focus || !HMD.active) { addressLine.focus = true; + addressLine.forceActiveFocus(); addressBarDialog.keyboardEnabled = HMD.active; } else { addressLine.focus = false; @@ -516,7 +517,7 @@ StackView { function updateLocationText(enteringAddress) { if (enteringAddress) { - notice.text = "Go to a place, @user, path or network address"; + notice.text = "Go To a place, @user, path, or network address:"; notice.color = hifiStyleConstants.colors.baseGrayHighlight; } else { notice.text = AddressManager.isConnected ? "Your location:" : "Not Connected";