diff --git a/src/main.rs b/src/main.rs index 7af6960..af6736c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -722,7 +722,9 @@ impl eframe::App for LiveSplitCoreRenderer { if input.consume_key(hot_key.modifiers, hot_key.key) { self.timer.write().reset(true); if self.app_config.use_autosplitter == Some(YesOrNo::Yes) { - self.thread_chan.send(ThreadEvent::TimerReset).unwrap_or(()); + self.thread_chan + .try_send(ThreadEvent::TimerReset) + .unwrap_or(()); } } }