rm commented out code and improve docstring to describe new var so we remember what it is about after 3 weeks ;)
This commit is contained in:
parent
76757c556c
commit
e20945ae1b
|
@ -154,7 +154,9 @@ class RosterWindow:
|
||||||
self.draw_contact(jid, account)
|
self.draw_contact(jid, account)
|
||||||
|
|
||||||
def add_contact_to_roster(self, jid, account, force = False):
|
def add_contact_to_roster(self, jid, account, force = False):
|
||||||
'''Add a contact to the roster and add groups if they aren't in roster'''
|
'''Add a contact to the roster and add groups if they aren't in roster
|
||||||
|
force is about force to add it, even if it is offline and show offline
|
||||||
|
is False, because it has online children, so we need to show it'''
|
||||||
showOffline = gajim.config.get('showoffline')
|
showOffline = gajim.config.get('showoffline')
|
||||||
contact = gajim.contacts.get_first_contact_from_jid(account, jid)
|
contact = gajim.contacts.get_first_contact_from_jid(account, jid)
|
||||||
if not contact:
|
if not contact:
|
||||||
|
@ -2821,12 +2823,6 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
|
||||||
showOffline)
|
showOffline)
|
||||||
|
|
||||||
# columns
|
# columns
|
||||||
# col = gtk.TreeViewColumn()
|
|
||||||
# render_image = cell_renderer_image.CellRendererImage(0, 0)
|
|
||||||
# col.pack_start(render_image, expand = False)
|
|
||||||
# col.add_attribute(render_image, 'image', C_IMG)
|
|
||||||
# self.tree.append_column(col)
|
|
||||||
# self.tree.set_expander_column(col)
|
|
||||||
|
|
||||||
# this col has two cells: first one img, second one text
|
# this col has two cells: first one img, second one text
|
||||||
col = gtk.TreeViewColumn()
|
col = gtk.TreeViewColumn()
|
||||||
|
|
Loading…
Reference in New Issue