diff options
author | Martin Stransky <stransky@redhat.com> | 2018-03-06 15:00:42 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2018-03-06 15:00:42 +0100 |
commit | bee8e7456aef10b3298647cb20f73f7b5803c852 (patch) | |
tree | cbfc930f57395b21dcbc6b1cfe3fa562e165ee97 /mozilla-1434202.patch | |
parent | Fix prefs because of rpm (diff) | |
parent | Fix crash when e10s is disabled and default wl_queue is processed. (diff) | |
download | librewolf-fedora-ff-bee8e7456aef10b3298647cb20f73f7b5803c852.tar.gz librewolf-fedora-ff-bee8e7456aef10b3298647cb20f73f7b5803c852.tar.bz2 librewolf-fedora-ff-bee8e7456aef10b3298647cb20f73f7b5803c852.zip |
Merged with firefox-59
Diffstat (limited to 'mozilla-1434202.patch')
-rw-r--r-- | mozilla-1434202.patch | 25 |
1 files changed, 25 insertions, 0 deletions
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); + } + |