id summary reporter owner description type status priority milestone component version resolution keywords cc 2698 Column data indexes corrupted during column removal Ratanak "There is a bug in the ''remove_column'' code. At line 502 of ''listview.py'': {{{ # Remove from the liststore columns list for index in column_indices: del self.liststore_columns[index] }}} ''column_indices'' is an ascending list of data indexes that a plugin uses. Normally, if a plugin only registers one status field, it loops once and there is no side effect. However, if a plugin registers multiple status fields, deleting indexes in that order will cause the ''liststore_columns'' list to be corrupted because any items after the deleted index will be shifted down in the list which would change their indexes as the loop is being executed. Reversing the order of ''column_indices'' should fix the problem." bug closed major 1.3.11 GTK UI 1.3.10 Fixed Ratanak