mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 16:55:06 +02:00
FB13789 - Log in/Sign up dialog is missing "Forgot Username?" and "Forgot Password?" links
This commit is contained in:
parent
168edb1cde
commit
d659696b60
1 changed files with 10 additions and 2 deletions
|
@ -163,10 +163,18 @@ TextField {
|
||||||
text: textField.label
|
text: textField.label
|
||||||
colorScheme: textField.colorScheme
|
colorScheme: textField.colorScheme
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.right: parent.right
|
|
||||||
|
Binding on anchors.right {
|
||||||
|
when: parent.right
|
||||||
|
value: parent.right
|
||||||
|
}
|
||||||
|
Binding on wrapMode {
|
||||||
|
when: parent.right
|
||||||
|
value: Text.WordWrap
|
||||||
|
}
|
||||||
|
|
||||||
anchors.bottom: parent.top
|
anchors.bottom: parent.top
|
||||||
anchors.bottomMargin: 3
|
anchors.bottomMargin: 3
|
||||||
wrapMode: Text.WordWrap
|
|
||||||
visible: label != ""
|
visible: label != ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue