diff --git a/example/qml-Qt6/window/MainWindow.qml b/example/qml-Qt6/window/MainWindow.qml index 76eb0785..d6a710a8 100644 --- a/example/qml-Qt6/window/MainWindow.qml +++ b/example/qml-Qt6/window/MainWindow.qml @@ -42,7 +42,15 @@ FluWindow { } onFirstVisible: { - tour.open() + timer_tour_delay.restart() + } + + Timer{ + id:timer_tour_delay + interval: 200 + onTriggered: { + tour.open() + } } Component.onCompleted: { diff --git a/example/qml/window/MainWindow.qml b/example/qml/window/MainWindow.qml index d598b5f8..2f4c08b8 100644 --- a/example/qml/window/MainWindow.qml +++ b/example/qml/window/MainWindow.qml @@ -45,7 +45,15 @@ FluWindow { } onFirstVisible: { - tour.open() + timer_tour_delay.restart() + } + + Timer{ + id:timer_tour_delay + interval: 200 + onTriggered: { + tour.open() + } } Component.onCompleted: {