summaryrefslogtreecommitdiff
path: root/mozilla-1497534.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-11-06 09:44:57 +0100
committerMartin Stransky <stransky@redhat.com>2018-11-06 09:44:57 +0100
commite0359028b4ac26ef2f3cd1ffec60d4facb195b17 (patch)
tree51feecb9b67ee0542c5235c7ae3a0c0bdc99ad1a /mozilla-1497534.patch
parentMerge branch 'master' into f29 (diff)
downloadlibrewolf-fedora-ff-e0359028b4ac26ef2f3cd1ffec60d4facb195b17.tar.gz
librewolf-fedora-ff-e0359028b4ac26ef2f3cd1ffec60d4facb195b17.tar.bz2
librewolf-fedora-ff-e0359028b4ac26ef2f3cd1ffec60d4facb195b17.zip
Added fix for mozbz#1497534 - titlebar appearance during D&D, Added fix for mozbz#1502457- disable Contextual Feature Recommender/shield studies by default.
Diffstat (limited to 'mozilla-1497534.patch')
-rw-r--r--mozilla-1497534.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/mozilla-1497534.patch b/mozilla-1497534.patch
new file mode 100644
index 0000000..066c919
--- /dev/null
+++ b/mozilla-1497534.patch
@@ -0,0 +1,28 @@
+diff --git a/widget/gtk/nsWindow.h b/widget/gtk/nsWindow.h
+--- a/widget/gtk/nsWindow.h
++++ b/widget/gtk/nsWindow.h
+@@ -287,6 +287,7 @@
+ // descendant windows
+ GtkWidget* GetMozContainerWidget();
+ GdkWindow* GetGdkWindow() { return mGdkWindow; }
++ GtkWidget* GetGtkWidget() { return mShell; }
+ bool IsDestroyed() { return mIsDestroyed; }
+
+ void DispatchDragEvent(mozilla::EventMessage aMsg,
+diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp
+--- a/widget/gtk/nsWindow.cpp
++++ b/widget/gtk/nsWindow.cpp
+@@ -7480,5 +7480,10 @@
+ }
+ }
+
+- return (gFocusWindow == window);
+-}
++ GtkWidget* widget = window->GetGtkWidget();
++ if (widget) {
++ return !(gtk_widget_get_state_flags(widget) & GTK_STATE_FLAG_BACKDROP);
++ }
++
++ return false;
++}
+
bgstack15