Merge pull request #12768 from ElderOrb/FB13789_RC66

Fix regression with 'Log in/Sign up' dialog is missing "Forgot Username?" and "Forgot Password?" links
This commit is contained in:
John Conklin II 2018-04-03 13:24:50 -07:00 committed by GitHub
commit db56656fcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,10 +163,18 @@ TextField {
text: textField.label
colorScheme: textField.colorScheme
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.bottomMargin: 3
wrapMode: Text.WordWrap
visible: label != ""
}
}