|
From: CORE C. L. <cor...@li...> - 2000-11-26 17:18:42
|
Core CVS committal
Author : rbdpngn
Project : core
Module : src
Modified Files:
panes.c
Log Message:
Small fix for getting the accounts windows columns to look pretty. :)
===================================================================
RCS file: /cvsroot/corem/core/src/panes.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- panes.c 2000/11/26 11:39:17 1.15
+++ panes.c 2000/11/26 17:18:38 1.16
@@ -374,10 +374,10 @@
g_free(text[3]);
g_free(text);
- gtk_clist_optimal_column_width(GTK_CLIST(clist), 0);
- gtk_clist_optimal_column_width(GTK_CLIST(clist), 1);
- gtk_clist_optimal_column_width(GTK_CLIST(clist), 2);
- gtk_clist_optimal_column_width(GTK_CLIST(clist), 3);
+ gtk_clist_set_column_auto_resize(GTK_CLIST(clist), 0, TRUE);
+ gtk_clist_set_column_auto_resize(GTK_CLIST(clist), 1, TRUE);
+ gtk_clist_set_column_auto_resize(GTK_CLIST(clist), 2, TRUE);
+ gtk_clist_set_column_auto_resize(GTK_CLIST(clist), 3, TRUE);
hbox = gtk_hbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(main_vbox), hbox, FALSE, FALSE, 0);
|