diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2014-11-21 07:47:08 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2014-11-21 07:47:08 +1000 |
commit | d8a1fe5c97b18832b52a2e33f553ade69baf6c76 (patch) | |
tree | ad41935bf40cc8c36b617c3c32518ee9ceeb6bb1 /src/osx | |
parent | 55bb652c4a71073ed3bf28c4a35907f33e4eb607 (diff) | |
download | glutin-d8a1fe5c97b18832b52a2e33f553ade69baf6c76.tar.gz glutin-d8a1fe5c97b18832b52a2e33f553ade69baf6c76.zip |
Implement get_inner_size() for mac.
Diffstat (limited to 'src/osx')
-rw-r--r-- | src/osx/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/osx/mod.rs b/src/osx/mod.rs index 64cc529..0b4a508 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -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)> { |