Skip to content
Snippets Groups Projects
Commit c454a85c authored by Franck Laurent's avatar Franck Laurent Committed by Sébastien Blin
Browse files

CreateAccountPage: fix rendering problem

+ fix top margin for the error label in usernameTextEdit.
+ fix the info button margin when placeHolder text is active.

GitLab: #1060
Change-Id: I3ca5421c908a0b77c7c175af54a45d49aacf8f57
parent bb54f452
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ TextField {
width: suffixIcon.width
height: suffixIcon.height
anchors.right: suffixBisIcon.left
anchors.rightMargin: suffixBisIconSrc !== '' ? 5 : 0
anchors.rightMargin: suffixBisIconSrc !== '' ? 5 : root.isActive ? 0 : 20
anchors.verticalCenter: root.verticalCenter
anchors.verticalCenterOffset: -root.bottomPadding / 2
visible: !readOnly
......
......@@ -244,6 +244,7 @@ Rectangle {
id: invalidLabel
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
Layout.topMargin: JamiTheme.wizardViewDescriptionMarginSize
visible: text.length !==0
Layout.preferredWidth: Math.min(440, root.width - JamiTheme.preferredMarginSize * 2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment