From a16c5a063b1e480656c635788664e6995e9c5c1a Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Tue, 30 Jan 2018 14:11:53 +0100 Subject: Added Wayland specific patches mozbz#1431052 mozbz#1432414 mozbz#1434202 --- mozilla-1434202.patch | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 mozilla-1434202.patch (limited to 'mozilla-1434202.patch') diff --git a/mozilla-1434202.patch b/mozilla-1434202.patch new file mode 100644 index 0000000..d91f55e --- /dev/null +++ b/mozilla-1434202.patch @@ -0,0 +1,25 @@ +diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp +--- a/widget/gtk/nsWindow.cpp ++++ b/widget/gtk/nsWindow.cpp +@@ -3785,16 +3785,20 @@ nsWindow::Create(nsIWidget* aParent, + SetCursor(eCursor_standard); + + if (aInitData->mNoAutoHide) { + gint wmd = ConvertBorderStyles(mBorderStyle); + if (wmd != -1) + gdk_window_set_decorations(mGdkWindow, (GdkWMDecoration) wmd); + } + ++ if (!mIsX11Display) { ++ gtk_widget_set_app_paintable(mShell, TRUE); ++ } ++ + // If the popup ignores mouse events, set an empty input shape. + if (aInitData->mMouseTransparent) { + cairo_rectangle_int_t rect = { 0, 0, 0, 0 }; + cairo_region_t *region = cairo_region_create_rectangle(&rect); + + gdk_window_input_shape_combine_region(mGdkWindow, region, 0, 0); + cairo_region_destroy(region); + } + -- cgit