diff options
author | Martin Stransky <stransky@redhat.com> | 2021-01-20 16:35:08 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2021-01-20 16:35:08 +0100 |
commit | e369e8cae9a92d805edaa86125ebac06e221edda (patch) | |
tree | c4770c819d64c2cfb912ce942c1b44400e9d9551 | |
parent | Fixed mzbz#164294 regression (diff) | |
download | librewolf-fedora-ff-e369e8cae9a92d805edaa86125ebac06e221edda.tar.gz librewolf-fedora-ff-e369e8cae9a92d805edaa86125ebac06e221edda.tar.bz2 librewolf-fedora-ff-e369e8cae9a92d805edaa86125ebac06e221edda.zip |
Added patch for mozilla bug 1645695
-rw-r--r-- | firefox.spec | 2 | ||||
-rw-r--r-- | mozilla-1645695.patch | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/firefox.spec b/firefox.spec index f28489b..7cbd759 100644 --- a/firefox.spec +++ b/firefox.spec @@ -225,6 +225,7 @@ Patch421: mozilla-1680505.patch Patch422: mozilla-1631061.patch Patch423: mozilla-1681107.patch Patch424: firefox-wayland-fix-mzbz-1642949-regression.patch +Patch425: mozilla-1645695.patch # Upstream patches from mozbz#1672944 Patch450: pw1.patch @@ -455,6 +456,7 @@ This package contains results of tests executed during build. #%patch422 -p1 -b .1631061 %patch423 -p1 -b .1681107 %patch424 -p1 -b .fix-mzbz-1642949-regression +%patch425 -p1 -b .1645695 %patch500 -p1 -b .ffvpx diff --git a/mozilla-1645695.patch b/mozilla-1645695.patch new file mode 100644 index 0000000..feaae4a --- /dev/null +++ b/mozilla-1645695.patch @@ -0,0 +1,14 @@ +diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp +--- a/widget/gtk/nsWindow.cpp ++++ b/widget/gtk/nsWindow.cpp +@@ -1768,7 +1768,8 @@ + } + #endif + +- if (!g_signal_handler_find( ++ if (isWidgetVisible && ++ !g_signal_handler_find( + gdkWindow, G_SIGNAL_MATCH_FUNC, 0, 0, nullptr, + FuncToGpointer(NativeMoveResizeWaylandPopupCallback), this)) { + g_signal_connect(gdkWindow, "moved-to-rect", + |