summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firefox.sh.in5
-rw-r--r--firefox.spec5
2 files changed, 9 insertions, 1 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 385a05c..98a8b0c 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -147,6 +147,11 @@ export GNOME_DISABLE_CRASH_DIALOG
##
export G_SLICE=always-malloc
+##
+## Enable Xinput2 (mozbz#1207973)
+##
+export MOZ_USE_XINPUT2=1
+
# OK, here's where all the real work gets done
diff --git a/firefox.spec b/firefox.spec
index 78cd798..a3ec3b7 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -86,7 +86,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 41.0
-Release: 6%{?pre_tag}%{?dist}
+Release: 7%{?pre_tag}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -769,6 +769,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Tue Sep 29 2015 Martin Stransky <stransky@redhat.com> - 41.0-7
+- Enable Xinput2 (mozbz#1207973)
+
* Fri Sep 25 2015 Martin Stransky <stransky@redhat.com> - 41.0-6
- Rebuilt for old sqlite which is available in updates
bgstack15