From a30a2c116239e615c685194c9287c3adc05594a5 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 21 Jun 2000 22:49:34 +0000 Subject: Changed this to move the cell to the nearest edge instead of to the left 2000-06-21 Christopher James Lahey * e-table-header-item.c: Changed this to move the cell to the nearest edge instead of to the left of the column it's over. * e-table-header.c: Made target_index equal to eti->col_count be a valid parameter to e_table_header_move. svn path=/trunk/; revision=3683 --- widgets/e-table/e-table-header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets/e-table/e-table-header.c') diff --git a/widgets/e-table/e-table-header.c b/widgets/e-table/e-table-header.c index 2ac82215df..06aeb50b3f 100644 --- a/widgets/e-table/e-table-header.c +++ b/widgets/e-table/e-table-header.c @@ -447,7 +447,7 @@ e_table_header_move (ETableHeader *eth, int source_index, int target_index) g_return_if_fail (source_index >= 0); g_return_if_fail (target_index >= 0); g_return_if_fail (source_index < eth->col_count); - g_return_if_fail (target_index < eth->col_count); + g_return_if_fail (target_index < eth->col_count + 1); /* Can be moved beyond the last item. */ if (source_index < target_index) target_index --; -- cgit v1.2.3