Changeset 8732 for branches/gajim_0.11.1/src/roster_window.py
- Timestamp:
- 09/05/07 16:15:20 (15 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.1/src/roster_window.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.1/src/roster_window.py
r8731 r8732 17 17 18 18 import gtk 19 import pango 19 20 import gobject 20 21 import os … … 1105 1106 self.add_account_to_roster(acct) 1106 1107 self.add_account_contacts(acct) 1108 # Recalculate column width for ellipsizing 1109 self.tree.columns_autosize() 1107 1110 1108 1111 def add_account_contacts(self, account): … … 4488 4491 4489 4492 render_text = gtk.CellRendererText() # contact or group or account name 4493 render_text.set_property("ellipsize", pango.ELLIPSIZE_END) 4490 4494 col.pack_start(render_text, expand = True) 4491 4495 col.add_attribute(render_text, 'markup', C_NAME) # where we hold the name
