aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2014-10-27 14:47:33 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2014-10-27 14:58:04 +1000
commit22b434bf1da4c338ffd963aca1ae873307c5e5bb (patch)
tree22b557b28858d8a31cae9060e51626279a778973 /src
parent41d7118a424513e658279df877eafd4421e10dc3 (diff)
downloadglutin-22b434bf1da4c338ffd963aca1ae873307c5e5bb.tar.gz
glutin-22b434bf1da4c338ffd963aca1ae873307c5e5bb.zip
Only reject modes based on resolution when using fullscreen. This fixes creating a window that is not the same resolution as an existing video mode.
Diffstat (limited to 'src')
-rw-r--r--src/x11/window/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11/window/mod.rs b/src/x11/window/mod.rs
index 99cbf9d..6a2dffe 100644
--- a/src/x11/window/mod.rs
+++ b/src/x11/window/mod.rs
@@ -95,7 +95,7 @@ impl Window {
best_mode = i;
}
};
- if best_mode == -1 {
+ if best_mode == -1 && builder.monitor.is_some() {
return Err(format!("Could not find a suitable graphics mode"));
}