1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-11-21 05:02:45 +00:00

Fix SDL_SysWMinfo usage on macOS

This commit is contained in:
Alula 2024-08-28 22:21:47 +02:00
parent 83ba76a5ae
commit b2b8406192
No known key found for this signature in database
GPG key ID: 3E00485503A1D8BA

View file

@ -242,7 +242,7 @@ impl SDL2EventLoop {
let mut whandle = self.refs.deref().borrow().window.window().raw();
if sdl2_sys::SDL_GetWindowWMInfo(whandle, &mut winfo as *mut _) != sdl2_sys::SDL_bool::SDL_FALSE {
let window = winfo.info.x11.display as *mut objc2::runtime::AnyObject;
let window = winfo.info.cocoa.window as *mut objc2::runtime::AnyObject;
if enabled {
let _: () = msg_send![window, setTitlebarAppearsTransparent:YES];