From 3ea6cac45aac79ee125ead7dc5702c11eb02634e Mon Sep 17 00:00:00 2001 From: David Kelly Date: Mon, 10 Apr 2017 08:05:01 -0700 Subject: [PATCH] HMD.mounted instead of HMD.isMounted --- interface/resources/qml/hifi/Pal.qml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml index 8814342f02..6f815e79f9 100644 --- a/interface/resources/qml/hifi/Pal.qml +++ b/interface/resources/qml/hifi/Pal.qml @@ -921,17 +921,10 @@ Rectangle { property string notLoggedInInstructions: "You must be logged into your High Fidelity account to make connections.
" property string instructions: "When you meet someone you want to remember later, you can connect with a handshake:

" - // Text text: - Account.isLoggedIn() ? - HMD.isMounted ? - instructions + hmdMountedInstructions - : instructions + hmdNotMountedInstructions - : - HMD.isMounted ? - notLoggedInInstructions + instructions + hmdMountedInstructions - : notLoggedInInstructions + instructions + hmdNotMountedInstructions + Account.isLoggedIn() ? ( HMD.mounted ? instructions + hmdMountedInstructions : instructions + hmdNotMountedInstructions) + : ( HMD.mounted ? notLoggedInInstructions + instructions + hmdMountedInstructions : notLoggedInInstructions + instructions + hmdNotMountedInstructions } }