fix(Onboarding): Save selected profile image for next steps

Closes: #6161
This commit is contained in:
Boris Melnik 2022-06-21 17:37:00 +03:00 committed by Iuri Matias
parent 22d5f2d126
commit 301e89ef48
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,11 @@ QtObject {
property bool showBeforeGetStartedPopup: true
function generateImage(source, aX, aY, bX, bY) {
profImgUrl = source
profImgAX = aX
profImgAY = aY
profImgBX = bX
profImgBY = bY
return onboardingModuleInst.generateImage(source, aX, aY, bX, bY)
}