comparison src/collect-table.c @ 330:57a4ced53618

Rename collection options.
author zas_
date Sat, 12 Apr 2008 08:40:02 +0000
parents c74af1cbd61a
children 767b53cd9ab7
comparison
equal deleted inserted replaced
329:a51242c032ea 330:57a4ced53618
364 if (!collection_table_find_position(ct, start, &row1, &col1) || 364 if (!collection_table_find_position(ct, start, &row1, &col1) ||
365 !collection_table_find_position(ct, end, &row2, &col2) ) return; 365 !collection_table_find_position(ct, end, &row2, &col2) ) return;
366 366
367 ct->prev_selection = end; 367 ct->prev_selection = end;
368 368
369 if (!options->collection_rectangular_selection) 369 if (!options->collections.rectangular_selection)
370 { 370 {
371 GList *work; 371 GList *work;
372 CollectInfo *info; 372 CollectInfo *info;
373 373
374 if (g_list_index(ct->cd->list, start) > g_list_index(ct->cd->list, end)) 374 if (g_list_index(ct->cd->list, start) > g_list_index(ct->cd->list, end))
1098 1098
1099 if (new_info != old_info) 1099 if (new_info != old_info)
1100 { 1100 {
1101 if (event->state & GDK_SHIFT_MASK) 1101 if (event->state & GDK_SHIFT_MASK)
1102 { 1102 {
1103 if (!options->collection_rectangular_selection) 1103 if (!options->collections.rectangular_selection)
1104 { 1104 {
1105 collection_table_select_region_util(ct, old_info, new_info, FALSE); 1105 collection_table_select_region_util(ct, old_info, new_info, FALSE);
1106 } 1106 }
1107 else 1107 else
1108 { 1108 {