From c3e8e38e995d03949bab758e534c718db4128fc0 Mon Sep 17 00:00:00 2001 From: Nicolas Vengeon <nicolas.vengeon@savoirfairelinux.com> Date: Thu, 6 Oct 2022 18:03:26 -0400 Subject: [PATCH] fix: add of aboutPopup in WizardView/WelcomeView Change-Id: I4d38b67ed3f194849bad6fb865254402f19b8e02 Gitlab: #839 --- src/app/wizardview/components/WelcomePage.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/wizardview/components/WelcomePage.qml b/src/app/wizardview/components/WelcomePage.qml index 0f3add50e..b2524a3d0 100644 --- a/src/app/wizardview/components/WelcomePage.qml +++ b/src/app/wizardview/components/WelcomePage.qml @@ -26,6 +26,7 @@ import net.jami.Adapters 1.1 import net.jami.Constants 1.1 import "../../commoncomponents" +import "../../mainview/components" Rectangle { @@ -71,6 +72,12 @@ Rectangle { anchors.topMargin: JamiTheme.wizardViewLayoutTopMargin width: Math.max(508, root.width - 100) + AboutPopUp { + id: aboutPopUpDialog + + width: Math.min(parent.width - 2 * JamiTheme.preferredMarginSize, JamiTheme.secondaryDialogDimension) + height: Math.min(parent.height - 2 * JamiTheme.preferredMarginSize, JamiTheme.secondaryDialogDimension) + } ResponsiveImage { id: welcomeLogo -- GitLab