mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
Merge pull request #128 from glennw/inner-size-mac
Implement get_inner_size() for mac.
This commit is contained in:
commit
c95b778e2c
|
@ -268,7 +268,8 @@ impl Window {
|
|||
}
|
||||
|
||||
pub fn get_inner_size(&self) -> Option<(uint, uint)> {
|
||||
unimplemented!()
|
||||
let rect = unsafe { NSView::frame(self.view) };
|
||||
Some((rect.size.width as uint, rect.size.height as uint))
|
||||
}
|
||||
|
||||
pub fn get_outer_size(&self) -> Option<(uint, uint)> {
|
||||
|
|
Loading…
Reference in a new issue