mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 07:37:20 +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 notLoggedInInstructions: "<b><font color='red'>You must be logged into your High Fidelity account to make connections.</b></font><br>"
|
||||||
property string instructions:
|
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>"
|
"<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
|
||||||
text:
|
text:
|
||||||
Account.isLoggedIn() ?
|
Account.isLoggedIn() ? ( HMD.mounted ? instructions + hmdMountedInstructions : instructions + hmdNotMountedInstructions)
|
||||||
HMD.isMounted ?
|
: ( HMD.mounted ? notLoggedInInstructions + instructions + hmdMountedInstructions : notLoggedInInstructions + instructions + hmdNotMountedInstructions
|
||||||
instructions + hmdMountedInstructions
|
|
||||||
: instructions + hmdNotMountedInstructions
|
|
||||||
:
|
|
||||||
HMD.isMounted ?
|
|
||||||
notLoggedInInstructions + instructions + hmdMountedInstructions
|
|
||||||
: notLoggedInInstructions + instructions + hmdNotMountedInstructions
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue