From 3d8f7ad46344743acfb6f4ae58be5b28398e1d45 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Wed, 17 Feb 2021 14:43:48 +0100 Subject: [PATCH] refactor: Move TimelineLayout into Component --- ui/app/AppMain.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index 4575cc1739..547c378bfc 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -344,7 +344,9 @@ RowLayout { Loader { id: timelineLayoutContainer - sourceComponent: TimelineLayout {} + sourceComponent: Component { + TimelineLayout {} + } onLoaded: timelineLayoutContainer.item.onActivated() active: false Layout.fillWidth: true