summaryrefslogtreecommitdiff
path: root/firefox-gtk3-20.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2016-04-25 20:28:28 +0200
committerMartin Stransky <stransky@anakreon.cz>2016-04-25 20:28:28 +0200
commit842e125f643b9b5217e2665322714b758cc7818f (patch)
tree88beebd3ca33a2096d248f1297ef3df799cbc42c /firefox-gtk3-20.patch
parentUpdate to Firefox 46 (diff)
downloadlibrewolf-fedora-ff-842e125f643b9b5217e2665322714b758cc7818f.tar.gz
librewolf-fedora-ff-842e125f643b9b5217e2665322714b758cc7818f.tar.bz2
librewolf-fedora-ff-842e125f643b9b5217e2665322714b758cc7818f.zip
build fix
Diffstat (limited to 'firefox-gtk3-20.patch')
-rw-r--r--firefox-gtk3-20.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox-gtk3-20.patch b/firefox-gtk3-20.patch
index 4711849..be72bfe 100644
--- a/firefox-gtk3-20.patch
+++ b/firefox-gtk3-20.patch
@@ -591,7 +591,7 @@ diff -up firefox-46.0/widget/gtk/gtk3drawing.c.gtk3-20 firefox-46.0/widget/gtk/g
- style = gtk_widget_get_style_context(GTK_WIDGET(scrollbar));
- gtk_style_context_save(style);
- gtk_style_context_add_class(style, GTK_STYLE_CLASS_TROUGH);
-+ if (widget == MOZ_GTK_SCROLLBAR_TRACK_HORIZONTAL) {
++ if (widget == MOZ_GTK_SCROLLBAR_HORIZONTAL) {
+ gtk_widget_set_direction(GTK_WIDGET(gHorizScrollbar.widget), direction);
+ style = gHorizScrollbar.scroll.style;
+ }
bgstack15