summaryrefslogtreecommitdiff
path: root/mozilla-1431399.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2019-05-15 16:14:03 +0200
committerMartin Stransky <stransky@redhat.com>2019-05-15 16:14:03 +0200
commitbbb92a85723ed11fe114e3a702c1fe1362fbbf7d (patch)
tree32f9bfb12f9f13fc94e673f9e646a0a3af876dc0 /mozilla-1431399.patch
parentUpdated to 66.0.5 (diff)
downloadlibrewolf-fedora-ff-bbb92a85723ed11fe114e3a702c1fe1362fbbf7d.tar.gz
librewolf-fedora-ff-bbb92a85723ed11fe114e3a702c1fe1362fbbf7d.tar.bz2
librewolf-fedora-ff-bbb92a85723ed11fe114e3a702c1fe1362fbbf7d.zip
Updated to 67.0
Diffstat (limited to 'mozilla-1431399.patch')
-rw-r--r--mozilla-1431399.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/mozilla-1431399.patch b/mozilla-1431399.patch
deleted file mode 100644
index b6513d0..0000000
--- a/mozilla-1431399.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp
---- a/widget/gtk/nsWindow.cpp
-+++ b/widget/gtk/nsWindow.cpp
-@@ -3242,6 +3242,12 @@
- mBounds = aRect;
- ConstrainSize(&mBounds.width, &mBounds.height);
-
-+ // eWindowType_child is not supported on Wayland. Just switch to toplevel
-+ // as a workaround.
-+ if (!mIsX11Display && mWindowType == eWindowType_child) {
-+ mWindowType = eWindowType_toplevel;
-+ }
-+
- // figure out our parent window
- GtkWidget *parentMozContainer = nullptr;
- GtkContainer *parentGtkContainer = nullptr;
-
bgstack15