mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
HMD.mounted instead of HMD.isMounted
This commit is contained in:
parent
948a821824
commit
3ea6cac45a
1 changed files with 2 additions and 9 deletions
|
@ -921,17 +921,10 @@ Rectangle {
|
|||
property string notLoggedInInstructions: "<b><font color='red'>You must be logged into your High Fidelity account to make connections.</b></font><br>"
|
||||
property string instructions:
|
||||
"<b>When you meet someone you want to remember later, you can <font color='purple'>connect</font> with a handshake:</b><br><br>"
|
||||
|
||||
// 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
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue