Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (394 - 396 of 2447)

Ticket Resolution Summary Owner Reporter
#2698 Fixed Column data indexes corrupted during column removal Ratanak
Description

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.

#1890 Fixed Column in files and peers view could use some spacing Damien Churchill heissfuss
Description

For example, the files and and size column text for long file names will look mushed together if the file name is partially hidden due to length. This can be easily worked around by extending the column, but having a space between file name and file size would be more visually attractive.

#1957 Fixed Columns don't add resulting in keyerror for non-latin languages Calum Calum
Description
deluge-gtk crashed with KeyError in on_menuitem_toggled(): '\xd0\x97\xd0\xb0\xd0\xb3\xd1\x80\xd1\x83\xd0\xb6\xd0\xb5\xd0\xbd\xd0\xbe'
Traceback:
 Traceback (most recent call last):
   File "/usr/lib/python2.7/dist-packages/deluge/ui/gtkui/listview.py", line 339, in on_menuitem_toggled
     self.columns[name].column.set_visible(widget.get_active())
 KeyError: '\xd0\x97\xd0\xb0\xd0\xb3\xd1\x80\xd1\x83\xd0\xb6\xd0\xb5\xd0\xbd\xd0\xbe'

From: https://bugs.launchpad.net/ubuntu/+source/deluge/+bug/854648

A workaround patch from Serge Matveenko has been attached.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.