>From 68d3285346522450df34033de754e12ee855c240 Mon Sep 17 00:00:00 2001 From: phan Date: Wed, 4 Aug 2010 10:45:18 +0200 Subject: [PATCH] notebook: Remove notebooks' border Border around the right pane notebook makes it harder to aim the scrollbar, while app is on fullscreen. Without the border, user can aim the scrollbar by simply moving the mouse cursor to the right edge of the screen. --- src/gnome-cmd-notebook.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gnome-cmd-notebook.h b/src/gnome-cmd-notebook.h index e1cd265..7769407 100644 --- a/src/gnome-cmd-notebook.h +++ b/src/gnome-cmd-notebook.h @@ -39,7 +39,7 @@ struct GnomeCmdNotebook Private *priv; - void *operator new (size_t size) { return g_object_new (GNOME_CMD_TYPE_NOTEBOOK, "show-tabs", FALSE, "scrollable", TRUE, NULL); } + void *operator new (size_t size) { return g_object_new (GNOME_CMD_TYPE_NOTEBOOK, "show-tabs", FALSE, "scrollable", TRUE, "show-border", false, NULL); } void operator delete (void *p) { g_object_unref (p); } operator GtkWidget * () const { return GTK_WIDGET (this); } -- 1.7.0.4