summaryrefslogtreecommitdiff
path: root/gtk/gtkclist.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkclist.c')
-rw-r--r--gtk/gtkclist.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c
index 897bc34b9b..99f4e85e9a 100644
--- a/gtk/gtkclist.c
+++ b/gtk/gtkclist.c
@@ -1753,8 +1753,11 @@ gtk_clist_optimal_column_width (GtkCList *clist,
return 0;
if (GTK_CLIST_SHOW_TITLES(clist) && clist->column[column].button)
- width = (clist->column[column].button->requisition.width -
- (CELL_SPACING + (2 * COLUMN_INSET)));
+ width = (clist->column[column].button->requisition.width)
+#if 0
+ (CELL_SPACING + (2 * COLUMN_INSET)))
+#endif
+ ;
else
width = 0;