diff options
author | Victor Berger <victor.berger@m4x.org> | 2015-12-22 14:36:11 +0100 |
---|---|---|
committer | Victor Berger <victor.berger@m4x.org> | 2015-12-22 14:36:42 +0100 |
commit | 83e2924ac2c438c41e35b60174844d26ae51da82 (patch) | |
tree | 8a8990feee469c9df332d2029e6022aa7bc448a8 /src | |
parent | 6eba737fce8f50798d81c24eb70872ff46a2da3a (diff) | |
download | glutin-83e2924ac2c438c41e35b60174844d26ae51da82.tar.gz glutin-83e2924ac2c438c41e35b60174844d26ae51da82.zip |
api/wayland: activate the backend
Diffstat (limited to 'src')
-rw-r--r-- | src/platform/linux/api_dispatch.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platform/linux/api_dispatch.rs b/src/platform/linux/api_dispatch.rs index f39ae43..a304f7a 100644 --- a/src/platform/linux/api_dispatch.rs +++ b/src/platform/linux/api_dispatch.rs @@ -30,7 +30,7 @@ enum Backend { lazy_static!( static ref BACKEND: Backend = { // Wayland backend is not production-ready yet so we disable it - if false && wayland::is_available() { + if wayland::is_available() { Backend::Wayland } else { match XConnection::new(Some(x_error_callback)) { |