From 3aea3055e85d7f367ec5b1347c5b96898e237fd2 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Tue, 6 Mar 2018 15:06:38 +0100 Subject: Removed unused wayland patches --- mozilla-1434202.patch | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 mozilla-1434202.patch (limited to 'mozilla-1434202.patch') diff --git a/mozilla-1434202.patch b/mozilla-1434202.patch deleted file mode 100644 index d91f55e..0000000 --- a/mozilla-1434202.patch +++ /dev/null @@ -1,25 +0,0 @@ -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