We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce10ab commit 568efb4Copy full SHA for 568efb4
crates/tauri-runtime-wry/src/monitor/macos.rs
@@ -18,7 +18,7 @@ impl super::MonitorExt for tao::monitor::MonitorHandle {
18
let mut position = self.position().to_logical::<f64>(scale_factor);
19
20
position.x += visible_frame.origin.x - screen_frame.origin.x;
21
- position.y -= visible_frame.origin.y - screen_frame.origin.y;
+ position.y += visible_frame.origin.y - screen_frame.origin.y;
22
23
PhysicalRect {
24
size: LogicalSize::new(visible_frame.size.width, visible_frame.size.height)
0 commit comments