From 1038ee41a3a1426c4a40ff13519eefbda1b56737 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 12 Apr 2009 21:57:20 +0200 Subject: [PATCH] Don't touch the ythickness of the notebook This allows the active tab to visually move above other tabs. The drawback is that it makes all tabs somewhat larger. --- midori/midori-browser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/midori/midori-browser.c b/midori/midori-browser.c index ff1c6c46..f13820be 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -4204,7 +4204,7 @@ midori_browser_init (MidoriBrowser* browser) browser->notebook = gtk_notebook_new (); /* Remove the inner border between scrollbars and the window border */ rcstyle = gtk_rc_style_new (); - rcstyle->xthickness = rcstyle->ythickness = 0; + rcstyle->xthickness = 0; gtk_widget_modify_style (browser->notebook, rcstyle); g_object_unref (rcstyle); gtk_notebook_set_scrollable (GTK_NOTEBOOK (browser->notebook), TRUE);