aboutsummaryrefslogtreecommitdiff
path: root/src/editgroup.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-03-27 03:03:29 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-03-27 03:03:29 +0000
commitc202fc92c7ccd3adb87b0fbdfc2b0a73f1a32aae (patch)
tree71daeaace11b4414f1aad24fa6dd8f9d7edb8a62 /src/editgroup.c
parente6effb250999ccd1ba666506a36e11e815abe2cc (diff)
win32: made a workaround for the redraw problem in GTK+ 2.10.11.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1577 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/editgroup.c')
-rw-r--r--src/editgroup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/editgroup.c b/src/editgroup.c
index 91abf833..b8b14ffc 100644
--- a/src/editgroup.c
+++ b/src/editgroup.c
@@ -338,6 +338,7 @@ static void addressbook_edit_group_create( gboolean *cancelled ) {
gtk_clist_set_column_width( GTK_CLIST(clist_avail), GROUP_COL_EMAIL, GROUP_COL_WIDTH_EMAIL );
gtk_clist_set_compare_func( GTK_CLIST(clist_avail), edit_group_list_compare_func );
gtk_clist_set_auto_sort( GTK_CLIST(clist_avail), TRUE );
+ gtkut_clist_set_redraw( GTK_CLIST(clist_avail) );
for( i = 0; i < GROUP_N_COLS; i++ )
GTK_WIDGET_UNSET_FLAGS(GTK_CLIST(clist_avail)->column[i].button, GTK_CAN_FOCUS);
@@ -377,6 +378,7 @@ static void addressbook_edit_group_create( gboolean *cancelled ) {
gtk_clist_set_column_width( GTK_CLIST(clist_group), GROUP_COL_EMAIL, GROUP_COL_WIDTH_EMAIL );
gtk_clist_set_compare_func( GTK_CLIST(clist_group), edit_group_list_compare_func );
gtk_clist_set_auto_sort( GTK_CLIST(clist_group), TRUE );
+ gtkut_clist_set_redraw( GTK_CLIST(clist_group) );
for( i = 0; i < GROUP_N_COLS; i++ )
GTK_WIDGET_UNSET_FLAGS(GTK_CLIST(clist_group)->column[i].button, GTK_CAN_FOCUS);