Changeset 2034
- Timestamp:
- 10/23/07 03:10:04 (15 months ago)
- Files:
-
- 2 modified
-
tags/deluge-0.5.5.95/src/interface.py (modified) (1 diff)
-
trunk/src/interface.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/deluge-0.5.5.95/src/interface.py
r2033 r2034 1493 1493 for columns in to_save: 1494 1494 pref_name = columns + '_width' 1495 self.config.set(pref_name, eval('self.' + columns +1496 '_column.get_width()'))1495 column = getattr(self, columns + '_column') 1496 self.config.set(pref_name, column.get_width()) 1497 1497 1498 1498 # Saves the tabs order (except the 'Details' tab) -
trunk/src/interface.py
r2033 r2034 1493 1493 for columns in to_save: 1494 1494 pref_name = columns + '_width' 1495 self.config.set(pref_name, eval('self.' + columns +1496 '_column.get_width()'))1495 column = getattr(self, columns + '_column') 1496 self.config.set(pref_name, column.get_width()) 1497 1497 1498 1498 # Saves the tabs order (except the 'Details' tab)
