From 2253caedfaffdd9deb99958c4565df1bda7d2395 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Fri, 15 Mar 2019 13:49:30 +0100 Subject: Updated to 66.0 (Build 3), Re-enable s390x arches, Fixed Wayland specific bugs mozbz#1535567, mozbz#1431399 --- mozilla-1431399.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mozilla-1431399.patch (limited to 'mozilla-1431399.patch') diff --git a/mozilla-1431399.patch b/mozilla-1431399.patch new file mode 100644 index 0000000..b6513d0 --- /dev/null +++ b/mozilla-1431399.patch @@ -0,0 +1,17 @@ +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; + -- cgit