refactor: imports
This commit is contained in:
parent
c5b4f7c51e
commit
1532c45342
|
@ -3,6 +3,7 @@ use std::{
|
|||
rc::Rc,
|
||||
sync::{mpsc, Arc, Mutex},
|
||||
thread,
|
||||
time::{Duration, Instant},
|
||||
};
|
||||
|
||||
use crate::manager::DeviceManager;
|
||||
|
@ -17,7 +18,7 @@ use winapi::um::{
|
|||
winuser::{self, ShowWindow, SW_SHOW},
|
||||
};
|
||||
|
||||
const BATTERY_UPDATE_INTERVAL: Duration = Duration::from_secs(60);
|
||||
const BATTERY_UPDATE_INTERVAL: Duration = Duration::from_secs(5);
|
||||
const DEVICE_FETCH_INTERVAL: Duration = Duration::from_secs(5);
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue