diff options
author | Martin Stransky <stransky@redhat.com> | 2015-09-15 11:35:53 +0200 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2015-09-15 11:35:53 +0200 |
commit | f37041f27768313f060e02be2a65f052e29ae72c (patch) | |
tree | 1e56a2bf2481b295385a32919c56bb9d4e89e59c /mozilla-1169232.patch | |
parent | Removed the dom.ipc.plugins.asyncInit hack (diff) | |
download | librewolf-fedora-ff-f37041f27768313f060e02be2a65f052e29ae72c.tar.gz librewolf-fedora-ff-f37041f27768313f060e02be2a65f052e29ae72c.tar.bz2 librewolf-fedora-ff-f37041f27768313f060e02be2a65f052e29ae72c.zip |
Update to 41.0 Build 1
Diffstat (limited to 'mozilla-1169232.patch')
-rw-r--r-- | mozilla-1169232.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/mozilla-1169232.patch b/mozilla-1169232.patch deleted file mode 100644 index 016e82f..0000000 --- a/mozilla-1169232.patch +++ /dev/null @@ -1,27 +0,0 @@ -# HG changeset patch -# User Martin Stransky <stransky@redhat.com> -# Parent f8d21278244bc0531513131f85a45e5736207ae1 -Bug 1169232 - [gtk3] add background class to tooltip window - to get correct background color. r=?karlt - -diff --git a/widget/gtk/nsLookAndFeel.cpp b/widget/gtk/nsLookAndFeel.cpp ---- a/widget/gtk/nsLookAndFeel.cpp -+++ b/widget/gtk/nsLookAndFeel.cpp -@@ -1004,16 +1004,17 @@ nsLookAndFeel::Init() - gtk_style_context_get_background_color(style, GTK_STATE_FLAG_NORMAL, &color); - sMozWindowBackground = GDK_RGBA_TO_NS_RGBA(color); - gtk_style_context_get_color(style, GTK_STATE_FLAG_NORMAL, &color); - sMozWindowText = GDK_RGBA_TO_NS_RGBA(color); - gtk_style_context_restore(style); - - // tooltip foreground and background - gtk_style_context_add_class(style, GTK_STYLE_CLASS_TOOLTIP); -+ gtk_style_context_add_class(style, GTK_STYLE_CLASS_BACKGROUND); - gtk_style_context_get_background_color(style, GTK_STATE_FLAG_NORMAL, &color); - sInfoBackground = GDK_RGBA_TO_NS_RGBA(color); - gtk_style_context_get_color(style, GTK_STATE_FLAG_NORMAL, &color); - sInfoText = GDK_RGBA_TO_NS_RGBA(color); - g_object_unref(style); - - // menu foreground & menu background - GtkWidget *accel_label = gtk_accel_label_new("M"); |