From 301e89ef4834a7eb042c0fdf67cde4d1fd5109a3 Mon Sep 17 00:00:00 2001 From: Boris Melnik Date: Tue, 21 Jun 2022 17:37:00 +0300 Subject: [PATCH] fix(Onboarding): Save selected profile image for next steps Closes: #6161 --- ui/app/AppLayouts/Onboarding/stores/OnboardingStore.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/app/AppLayouts/Onboarding/stores/OnboardingStore.qml b/ui/app/AppLayouts/Onboarding/stores/OnboardingStore.qml index d13e01fcd7..bccde92043 100644 --- a/ui/app/AppLayouts/Onboarding/stores/OnboardingStore.qml +++ b/ui/app/AppLayouts/Onboarding/stores/OnboardingStore.qml @@ -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) }