diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-10-03 09:58:18 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-10-03 09:58:18 +0200 |
commit | 5e1e7436af2b06350d30420c43e8b4a0dcf8ddfe (patch) | |
tree | ccf16440b2b20f932015ea2a2830f89c7e4d80e3 | |
parent | 9fccb2e06e15f56f270da4f7cbd5fa39b49b6826 (diff) | |
parent | b01897bfc7619ce534a050ae9cece86af8aacb12 (diff) | |
download | glutin-5e1e7436af2b06350d30420c43e8b4a0dcf8ddfe.tar.gz glutin-5e1e7436af2b06350d30420c43e8b4a0dcf8ddfe.zip |
Merge pull request #624 from ozkriff/android_disable_multitouch_by_default
android: Disabled multitouch by default
-rw-r--r-- | src/api/android/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/android/mod.rs b/src/api/android/mod.rs index 4e27e1c..eef04e8 100644 --- a/src/api/android/mod.rs +++ b/src/api/android/mod.rs @@ -133,6 +133,7 @@ impl Window { let (tx, rx) = channel(); android_glue::add_sender(tx); + android_glue::set_multitouch(win_attribs.multitouch); Ok(Window { context: context, |