aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parent293dcdc9a48bf47c15b91863307d59dd8c31de5b (diff)
downloadglutin-77d00a8e5acd6ab2bae7efac1d9f9a22b893a36e.tar.gz
glutin-77d00a8e5acd6ab2bae7efac1d9f9a22b893a36e.zip
Fixed an issue with the updated rust-cocoa crate
Diffstat (limited to 'src')
-rw-r--r--src/osx/event.rs2
-rw-r--r--src/osx/mod.rs5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/osx/event.rs b/src/osx/event.rs
index b5853bc..8b985b5 100644
--- a/src/osx/event.rs
+++ b/src/osx/event.rs
@@ -1,6 +1,4 @@
use events;
-use cocoa::base::NSUInteger;
-use cocoa::appkit;
pub fn vkeycode_to_element(code: u16) -> Option<events::VirtualKeyCode> {
Some(match code {
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))