Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/platform_impl/windows/event_loop/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,9 @@ impl<T> EventLoopRunner<T> {
self.call_event_handler(Event::LoopDestroyed);
}

(Destroyed, _) => panic!("cannot move state from Destroyed"),
(Destroyed, state) => {
debug!("Eventloop is already destroyed, cannot move to {state}")
Comment thread
thomaseizinger marked this conversation as resolved.
Outdated
}
}
}

Expand Down
Loading