Skip to content

Commit

Permalink
🐛 Timer::start doesn't accept an interval like QTimer
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierLDff committed Sep 21, 2024
1 parent 0ee4e0a commit bab60a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qml/Qaterial/Expandable.qml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ Item
}
else
{
_delayDestroyTimer.start(root.animation.duration + 100)
_delayDestroyTimer.interval = root.animation.duration + 100
_delayDestroyTimer.start()
}

// Delay the resize, to be sure that every property binded to expanded are already evaluated
Expand Down

0 comments on commit bab60a1

Please sign in to comment.