This commit is contained in:
朱子楚\zhuzi 2023-12-14 23:50:58 +08:00
parent c95ac86377
commit 9ee50a585a
2 changed files with 18 additions and 2 deletions

View File

@ -42,7 +42,15 @@ FluWindow {
}
onFirstVisible: {
tour.open()
timer_tour_delay.restart()
}
Timer{
id:timer_tour_delay
interval: 200
onTriggered: {
tour.open()
}
}
Component.onCompleted: {

View File

@ -45,7 +45,15 @@ FluWindow {
}
onFirstVisible: {
tour.open()
timer_tour_delay.restart()
}
Timer{
id:timer_tour_delay
interval: 200
onTriggered: {
tour.open()
}
}
Component.onCompleted: {