]> spindle.queued.net Git - midori/commitdiff
Don't touch the ythickness of the notebook
authorChristian Dywan <christian@twotoasts.de>
Sun, 12 Apr 2009 19:57:20 +0000 (21:57 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sun, 12 Apr 2009 19:57:20 +0000 (21:57 +0200)
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

index ff1c6c469e176e2a89ec41ebb90a875ac3701127..f13820be5835cb1ab89f7474f771071f1ccb89ee 100644 (file)
@@ -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);