diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-04-27 09:40:28 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-04-27 09:40:28 +0000 |
commit | 5c9d94e0a86d35a219daa154838327b2af119734 (patch) | |
tree | f132192d7326919c12a2f06bf5ac4d7c66201a2b /src/mainwindow.c | |
parent | 3a80457f96c30ce7f6d1714fdbea6370b02bd00d (diff) |
disabled no longer required workaround for resize grip.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@232 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r-- | src/mainwindow.c | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c index f0d291ba..8bc4d29e 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -771,7 +771,9 @@ MainWindow *main_window_create(SeparateType type) GtkWidget *online_pixmap; GtkWidget *offline_pixmap; GtkTooltips *online_tip; +#if !GTK_CHECK_VERSION(2, 6, 0) GtkWidget *spacer_hbox; +#endif GtkWidget *ac_button; GtkWidget *ac_label; @@ -785,8 +787,6 @@ MainWindow *main_window_create(SeparateType type) GtkItemFactory *ifactory; GtkWidget *ac_menu; GtkWidget *menuitem; - gint w; - gint h; gint i; static GdkGeometry geometry; @@ -869,8 +869,10 @@ MainWindow *main_window_create(SeparateType type) online_tip = gtk_tooltips_new(); +#if !GTK_CHECK_VERSION(2, 6, 0) spacer_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_end(GTK_BOX(statusbar), spacer_hbox, FALSE, FALSE, 0); +#endif ac_button = gtk_button_new(); gtk_button_set_relief(GTK_BUTTON(ac_button), GTK_RELIEF_NONE); @@ -1010,9 +1012,15 @@ MainWindow *main_window_create(SeparateType type) /* show main window */ gtk_widget_show(mainwin->window); - gdk_drawable_get_size - (GDK_DRAWABLE(GTK_STATUSBAR(statusbar)->grip_window), &w, &h); - gtk_widget_set_size_request(spacer_hbox, w, -1); +#if !GTK_CHECK_VERSION(2, 6, 0) + { + gint w, h; + gdk_drawable_get_size + (GDK_DRAWABLE(GTK_STATUSBAR(statusbar)->grip_window), + &w, &h); + gtk_widget_set_size_request(spacer_hbox, w, -1); + } +#endif /* initialize views */ folderview_init(folderview); |