summaryrefslogtreecommitdiff
path: root/firefox-gtk3-atk.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2014-12-13 17:44:44 +0100
committerMartin Stransky <stransky@anakreon.cz>2014-12-13 17:44:44 +0100
commit983d5dbd189dc727ab7d27f8a44d915beaa7a95b (patch)
tree0931dd8993d461cf887c71cc178b9baf890f7903 /firefox-gtk3-atk.patch
parentAdded fix for mozbz#1097592 - Firefox freeze in Gtk3 (diff)
downloadlibrewolf-fedora-ff-983d5dbd189dc727ab7d27f8a44d915beaa7a95b.tar.gz
librewolf-fedora-ff-983d5dbd189dc727ab7d27f8a44d915beaa7a95b.tar.bz2
librewolf-fedora-ff-983d5dbd189dc727ab7d27f8a44d915beaa7a95b.zip
Gtk3 - Workaround for Firefox freeze when accessibility is enabled
Diffstat (limited to 'firefox-gtk3-atk.patch')
-rw-r--r--firefox-gtk3-atk.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/firefox-gtk3-atk.patch b/firefox-gtk3-atk.patch
new file mode 100644
index 0000000..e5e33b5
--- /dev/null
+++ b/firefox-gtk3-atk.patch
@@ -0,0 +1,14 @@
+diff -up firefox-34.0/mozilla-release/accessible/atk/Platform.cpp.old firefox-34.0/mozilla-release/accessible/atk/Platform.cpp
+--- firefox-34.0/mozilla-release/accessible/atk/Platform.cpp.old 2014-11-26 03:17:05.000000000 +0100
++++ firefox-34.0/mozilla-release/accessible/atk/Platform.cpp 2014-12-13 17:40:29.414539391 +0100
+@@ -276,6 +276,9 @@ dbus_done:
+ bool
+ a11y::ShouldA11yBeEnabled()
+ {
++ // Temporary disable for Gtk3
++ return false;
++
+ static bool sChecked = false, sShouldEnable = false;
+ if (sChecked)
+ return sShouldEnable;
+diff -up firefox-34.0/mozilla-release/media/webrtc/trunk/Makefile.old firefox-34.0/mozilla-release/media/webrtc/trunk/Makefile
bgstack15