Delete reset function about enigo

This commit is contained in:
Asura 2022-09-01 20:24:50 -07:00
parent 763456519e
commit 4421d08384
2 changed files with 0 additions and 6 deletions

View File

@ -19,10 +19,6 @@ impl Enigo {
pub fn set_delay(&mut self, delay: u64) {
self.xdo.set_delay(delay)
}
/// Reset pynput?.
pub fn reset(&mut self) {
todo!()
}
/// Set uinput keyboard.
pub fn set_uinput_keyboard(
&mut self,

View File

@ -23,8 +23,6 @@ impl super::service::Reset for StateCursor {
*self = Default::default();
crate::platform::reset_input_cache();
fix_key_down_timeout(true);
#[cfg(target_os = "linux")]
ENIGO.lock().unwrap().reset();
}
}