mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
Window is no longer NoSend
This commit is contained in:
parent
14c59e8d81
commit
19b8474c4a
|
@ -53,7 +53,6 @@ pub struct MonitorID(winimpl::MonitorID);
|
||||||
/// ```
|
/// ```
|
||||||
pub struct Window {
|
pub struct Window {
|
||||||
window: winimpl::Window,
|
window: winimpl::Window,
|
||||||
nosend: std::kinds::marker::NoSend,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
|
@ -94,7 +93,6 @@ impl Window {
|
||||||
|
|
||||||
Ok(Window{
|
Ok(Window{
|
||||||
window: win,
|
window: win,
|
||||||
nosend: std::kinds::marker::NoSend,
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue