Add code removed by mistake in [8263].
This commit is contained in:
parent
981045005c
commit
ba5e4dbd3f
|
@ -16,6 +16,7 @@
|
||||||
##
|
##
|
||||||
|
|
||||||
import gtk
|
import gtk
|
||||||
|
import pango
|
||||||
import gobject
|
import gobject
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
|
@ -1186,6 +1187,8 @@ class RosterWindow:
|
||||||
for acct in gajim.connections:
|
for acct in gajim.connections:
|
||||||
self.add_account_to_roster(acct)
|
self.add_account_to_roster(acct)
|
||||||
self.add_account_contacts(acct)
|
self.add_account_contacts(acct)
|
||||||
|
# Recalculate column width for ellipsizing
|
||||||
|
self.tree.columns_autosize()
|
||||||
|
|
||||||
def add_account_contacts(self, account):
|
def add_account_contacts(self, account):
|
||||||
'''adds contacts of group to roster treeview'''
|
'''adds contacts of group to roster treeview'''
|
||||||
|
@ -5039,6 +5042,7 @@ class RosterWindow:
|
||||||
col.set_cell_data_func(render_image, self.iconCellDataFunc, None)
|
col.set_cell_data_func(render_image, self.iconCellDataFunc, None)
|
||||||
|
|
||||||
render_text = gtk.CellRendererText() # contact or group or account name
|
render_text = gtk.CellRendererText() # contact or group or account name
|
||||||
|
render_text.set_property("ellipsize", pango.ELLIPSIZE_END)
|
||||||
col.pack_start(render_text, expand = True)
|
col.pack_start(render_text, expand = True)
|
||||||
col.add_attribute(render_text, 'markup', C_NAME) # where we hold the name
|
col.add_attribute(render_text, 'markup', C_NAME) # where we hold the name
|
||||||
col.set_cell_data_func(render_text, self.nameCellDataFunc, None)
|
col.set_cell_data_func(render_text, self.nameCellDataFunc, None)
|
||||||
|
|
Loading…
Reference in New Issue