refactor: imports

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

View File

@ -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() {