aboutsummaryrefslogtreecommitdiffstats
path: root/src/osx/mod.rs
diff options
context:
space:
mode:
authorDavid Partouche <david@manateedev.com>2014-11-11 23:45:20 +0100
committerDavid Partouche <david@manateedev.com>2014-11-11 23:45:20 +0100
commit77d00a8e5acd6ab2bae7efac1d9f9a22b893a36e (patch)
tree2a59d464a3814759f42c2ee7beac1f366f78b2c9 /src/osx/mod.rs
parent293dcdc9a48bf47c15b91863307d59dd8c31de5b (diff)
downloadglutin-77d00a8e5acd6ab2bae7efac1d9f9a22b893a36e.tar.gz
glutin-77d00a8e5acd6ab2bae7efac1d9f9a22b893a36e.zip
Fixed an issue with the updated rust-cocoa crate
Diffstat (limited to 'src/osx/mod.rs')
-rw-r--r--src/osx/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/osx/mod.rs b/src/osx/mod.rs
index d6f1b8b..80a4226 100644
--- a/src/osx/mod.rs
+++ b/src/osx/mod.rs
@@ -113,7 +113,10 @@ impl Window {
fn create_window(dimensions: (uint, uint), title: &str, monitor: Option<MonitorID>) -> Option<id> {
unsafe {
let scr_frame = match monitor {
- Some(_) => NSScreen::mainScreen(nil).frame(),
+ Some(_) => {
+ let screen = NSScreen::mainScreen(nil);
+ NSScreen::frame(screen)
+ }
None => {
let (width, height) = dimensions;
NSRect::new(NSPoint::new(0., 0.), NSSize::new(width as f64, height as f64))