Implement get_inner_size() for mac.

This commit is contained in:
Glenn Watson 2014-11-21 07:47:08 +10:00
parent 55bb652c4a
commit d8a1fe5c97

View file

@ -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)> {