refactor: imports

This commit is contained in:
Timofey Gelazoniya 2024-09-06 04:09:54 +03:00
parent d9f92c97f4
commit 805ba16c2c
Signed by: zeldon
GPG Key ID: 047886915281DD2A
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ use std::{
rc::Rc,
sync::{mpsc, Arc, Mutex},
thread,
time::{Duration, Instant},
};
use crate::manager::DeviceManager;
@ -195,7 +196,7 @@ impl TrayApp {
event_loop.run(move |event, _, control_flow| {
*control_flow = tao::event_loop::ControlFlow::WaitUntil(
std::time::Instant::now() + std::time::Duration::from_millis(100),
Instant::now() + Duration::from_millis(100),
);
if let Ok(device_ids) = rx.try_recv() {