Skip to content
  • Simon Hausmann's avatar
    Fix panic in slint::Timer due to double mutable borrow (#5525) · 7d270812
    Simon Hausmann 创作于
    When stopping a timer, the removal from the timer list requires a mutable borrow.
    If during that borrow the timer's closure is dropped and a `Drop` impl starts another time, then the attempt of
    acquiring a mutable borrow for the timers list to insert the new timer fails.
    7d270812