summaryrefslogtreecommitdiff
path: root/rhbz-1291190-appchooser-crash.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2016-12-13 23:42:57 +0100
committerMartin Stransky <stransky@redhat.com>2016-12-13 23:42:57 +0100
commita1fc3a52e19346b00a4fd55751c324a29c1d8e29 (patch)
tree14cd69c0bb712dde3788d73b26007d35e31562c2 /rhbz-1291190-appchooser-crash.patch
parentAdded fix for 'ABORT: X_ShmAttach: BadAccess' crashes (mozbz#1271100) (diff)
downloadlibrewolf-fedora-ff-a1fc3a52e19346b00a4fd55751c324a29c1d8e29.tar.gz
librewolf-fedora-ff-a1fc3a52e19346b00a4fd55751c324a29c1d8e29.tar.bz2
librewolf-fedora-ff-a1fc3a52e19346b00a4fd55751c324a29c1d8e29.zip
Updated to 50.1.0
Diffstat (limited to 'rhbz-1291190-appchooser-crash.patch')
-rw-r--r--rhbz-1291190-appchooser-crash.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/rhbz-1291190-appchooser-crash.patch b/rhbz-1291190-appchooser-crash.patch
deleted file mode 100644
index be3ccd8..0000000
--- a/rhbz-1291190-appchooser-crash.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -up firefox-46.0.1/widget/gtk/nsApplicationChooser.cpp.appchooser-crash firefox-46.0.1/widget/gtk/nsApplicationChooser.cpp
---- firefox-46.0.1/widget/gtk/nsApplicationChooser.cpp.appchooser-crash 2016-05-03 07:31:12.000000000 +0200
-+++ firefox-46.0.1/widget/gtk/nsApplicationChooser.cpp 2016-05-12 12:17:44.043729262 +0200
-@@ -112,7 +112,9 @@ void nsApplicationChooser::Done(GtkWidge
-
- // A "response" signal won't be sent again but "destroy" will be.
- g_signal_handlers_disconnect_by_func(chooser, FuncToGpointer(OnDestroy), this);
-- gtk_widget_destroy(chooser);
-+ // GTK >= 3.18 has a problem with destroying dialog at this stage for some reason.
-+ // We're going to hide the dialog in this case as a workaround.
-+ gtk_widget_hide(chooser);
-
- if (mCallback) {
- mCallback->Done(localHandler);
bgstack15