Fix enter key naviation in login flow

This commit is contained in:
Nicolas Fella
2023-08-27 19:32:41 +02:00
parent d11d6c74b3
commit f5ad2ad162
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ LoginStep {
}
Keys.onReturnPressed: {
root.action.trigger()
root.nextAction.trigger()
}
}

View File

@@ -33,7 +33,7 @@ LoginStep {
statusMessage: LoginHelper.isInvalidPassword ? i18n("Invalid username or password") : ""
Keys.onReturnPressed: {
root.action.trigger()
root.nextAction.trigger()
}
}