You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let pressed = unsafe{AppKit::NSEvent::pressedMouseButtons()};
230
+
let pressed = unsafe{NSEvent::pressedMouseButtons()};
230
231
let(current_x, current_y) = self.location()?;
231
232
232
233
let(absolute, relative) = match coordinate {
@@ -309,7 +310,7 @@ impl Mouse for Enigo {
309
310
310
311
fnlocation(&self) -> InputResult<(i32,i32)>{
311
312
debug!("\x1b[93mlocation()\x1b[0m");
312
-
let pt = unsafe{AppKit::NSEvent::mouseLocation()};
313
+
let pt = unsafe{NSEvent::mouseLocation()};
313
314
let(x, y_inv) = (pt.xasi32, pt.yasi32);
314
315
Ok((x,self.display.pixels_high()asi32 - y_inv))
315
316
}
@@ -562,7 +563,7 @@ impl Enigo {
562
563
let held = (Vec::new(),Vec::new());
563
564
564
565
let double_click_delay = Duration::from_secs(1);
565
-
let double_click_delay_setting = unsafe{AppKit::NSEvent::doubleClickInterval()};
566
+
let double_click_delay_setting = unsafe{NSEvent::doubleClickInterval()};
566
567
// Returns the double click interval (https://developer.apple.com/documentation/appkit/nsevent/1528384-doubleclickinterval). This is a TimeInterval which is a f64 of the number of seconds
567
568
let double_click_delay = double_click_delay.mul_f64(double_click_delay_setting);
0 commit comments