aboutsummaryrefslogtreecommitdiff
path: root/src/statusbar.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-17 07:32:41 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-17 07:32:41 +0000
commit90906f6a4d71ce0c182026bf3afed3c1859f4359 (patch)
tree561219960110219cbd0f41a26f32162cccfd9a3c /src/statusbar.c
parent0964797c2d994886ba74b8bc8e331d77a6b9414a (diff)
removed resize grip of the statusbar of main window.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@11 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/statusbar.c')
-rw-r--r--src/statusbar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/statusbar.c b/src/statusbar.c
index 8ddc9508..f255aa61 100644
--- a/src/statusbar.c
+++ b/src/statusbar.c
@@ -39,7 +39,8 @@ GtkWidget *statusbar_create(void)
GtkWidget *statusbar;
statusbar = gtk_statusbar_new();
- gtk_widget_set_usize(statusbar, 1, -1);
+ gtk_widget_set_size_request(statusbar, 1, -1);
+ gtk_statusbar_set_has_resize_grip(GTK_STATUSBAR(statusbar), FALSE);
statusbar_list = g_list_append(statusbar_list, statusbar);
return statusbar;