Skip to content
Snippets Groups Projects
Commit ba5e4dbd authored by roidelapluie's avatar roidelapluie
Browse files

Add code removed by mistake in [8263].

parent 98104500
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@
##
import gtk
import pango
import gobject
import os
import time
......@@ -1186,6 +1187,8 @@ class RosterWindow:
for acct in gajim.connections:
self.add_account_to_roster(acct)
self.add_account_contacts(acct)
# Recalculate column width for ellipsizing
self.tree.columns_autosize()
def add_account_contacts(self, account):
'''adds contacts of group to roster treeview'''
......@@ -5039,6 +5042,7 @@ class RosterWindow:
col.set_cell_data_func(render_image, self.iconCellDataFunc, None)
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.add_attribute(render_text, 'markup', C_NAME) # where we hold the name
col.set_cell_data_func(render_text, self.nameCellDataFunc, None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment