diff options
-rw-r--r-- | src/x11/mod.rs | 5 | ||||
-rw-r--r-- | src/x11/monitor.rs | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs index 0f5f557..315c2b3 100644 --- a/src/x11/mod.rs +++ b/src/x11/mod.rs @@ -35,8 +35,9 @@ impl Window { display }; - let screen_id = unsafe { - ffi::XDefaultScreen(display) + let screen_id = match builder.monitor { + Some(MonitorID(monitor)) => monitor as i32, + None => unsafe { ffi::XDefaultScreen(display) }, }; // getting the FBConfig diff --git a/src/x11/monitor.rs b/src/x11/monitor.rs index f1b861b..3b382c2 100644 --- a/src/x11/monitor.rs +++ b/src/x11/monitor.rs @@ -1,7 +1,7 @@ use std::{ptr}; use super::ffi; -pub struct MonitorID(uint); +pub struct MonitorID(pub uint); pub fn get_available_monitors() -> Vec<MonitorID> { let nb_monitors = unsafe { |