Skip to content
Snippets Groups Projects
Commit b9e10b02 authored by Ming Rui Zhang's avatar Ming Rui Zhang
Browse files

wizardview: clear username line edit when clicking on skip button

It is to prevent using the text in username line edit to create an account
when the user does not want to register it.

Change-Id: Icae024a82141ea06dd6b4c5413de2ad9725433b5
parent c821c754
No related branches found
No related tags found
No related merge requests found
......@@ -209,8 +209,11 @@ Rectangle {
pressedColor: JamiTheme.buttonTintedGreyPressed
outlined: true
onClicked: createAccountStack.currentIndex =
createAccountStack.currentIndex + 1
onClicked: {
usernameEdit.clear()
createAccountStack.currentIndex =
createAccountStack.currentIndex + 1
}
}
AccountCreationStepIndicator {
......
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