mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
On Winows, Fix deedlock with WM_MOUSEMOVE
The lock was still present in `None` path.
Fixes: d37d1a03b(On Windows, fix deadlock during `Cursor{Enter,Leave}`)
This commit is contained in:
@@ -1496,7 +1496,7 @@ unsafe fn public_window_callback_inner<T: 'static>(
|
||||
},
|
||||
});
|
||||
}
|
||||
PointerMoveKind::None => (),
|
||||
PointerMoveKind::None => drop(w),
|
||||
}
|
||||
|
||||
// handle spurious WM_MOUSEMOVE messages
|
||||
|
||||
Reference in New Issue
Block a user