mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-23 03:59:29 +02:00
fix login links
This commit is contained in:
parent
0c9f0cbe03
commit
a906fbaf56
1 changed files with 11 additions and 6 deletions
|
@ -126,10 +126,12 @@ Item {
|
||||||
activeFocusOnPress: true
|
activeFocusOnPress: true
|
||||||
|
|
||||||
ShortcutText {
|
ShortcutText {
|
||||||
|
z: 10
|
||||||
anchors {
|
anchors {
|
||||||
verticalCenter: usernameField.textFieldLabel.verticalCenter
|
left: usernameField.left
|
||||||
left: usernameField.textFieldLabel.right
|
top: usernameField.top
|
||||||
leftMargin: 10
|
leftMargin: usernameField.textFieldLabel.contentWidth + 10
|
||||||
|
topMargin: -19
|
||||||
}
|
}
|
||||||
|
|
||||||
text: "<a href='https://highfidelity.com/users/password/new'>Forgot Username?</a>"
|
text: "<a href='https://highfidelity.com/users/password/new'>Forgot Username?</a>"
|
||||||
|
@ -154,10 +156,12 @@ Item {
|
||||||
activeFocusOnPress: true
|
activeFocusOnPress: true
|
||||||
|
|
||||||
ShortcutText {
|
ShortcutText {
|
||||||
|
z: 10
|
||||||
anchors {
|
anchors {
|
||||||
verticalCenter: passwordField.textFieldLabel.verticalCenter
|
left: passwordField.left
|
||||||
left: passwordField.textFieldLabel.right
|
top: passwordField.top
|
||||||
leftMargin: 10
|
leftMargin: passwordField.textFieldLabel.contentWidth + 10
|
||||||
|
topMargin: -19
|
||||||
}
|
}
|
||||||
|
|
||||||
text: "<a href='https://highfidelity.com/users/password/new'>Forgot Password?</a>"
|
text: "<a href='https://highfidelity.com/users/password/new'>Forgot Password?</a>"
|
||||||
|
@ -168,6 +172,7 @@ Item {
|
||||||
|
|
||||||
onLinkActivated: loginDialog.openUrl(link)
|
onLinkActivated: loginDialog.openUrl(link)
|
||||||
}
|
}
|
||||||
|
|
||||||
onFocusChanged: {
|
onFocusChanged: {
|
||||||
root.text = "";
|
root.text = "";
|
||||||
root.isPassword = true;
|
root.isPassword = true;
|
||||||
|
|
Loading…
Reference in a new issue