From d2d0260170fa062dc6fb9261bb6d9fb8afd33711 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 24 Oct 2011 23:21:18 +0000 Subject: Fix menu bar drawing failures on Firefox v4+ and Thunderbird when used with the GTK Qt Theme Engine This partially resolves Bug 546 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1260478 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/qt_theme_draw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/qt_theme_draw.c') diff --git a/src/qt_theme_draw.c b/src/qt_theme_draw.c index 02e462f..885a836 100644 --- a/src/qt_theme_draw.c +++ b/src/qt_theme_draw.c @@ -702,7 +702,9 @@ draw_box(GtkStyle * style, if (DETAIL("menubar")) { if (openOfficeFix == 1) - parent_class->draw_box (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height); + parent_class->draw_box (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height); + else if (mozillaFix == 1) + parent_class->draw_box (style, window, state_type, GTK_SHADOW_NONE, area, widget, detail, x, y, width, height); else drawMenubar(window,style,state_type,x,y,width,height); return; -- cgit v1.2.3