draw account name between [] only if it has child, and redraw account row after we add children. Fixes #2151

This commit is contained in:
Yann Leboulanger 2006-09-11 07:41:42 +00:00
parent 875f4f8894
commit e421c539e7
1 changed files with 4 additions and 3 deletions

View File

@ -194,10 +194,10 @@ class RosterWindow:
path = model.get_path(iter) path = model.get_path(iter)
if self.regroup: if self.regroup:
account = _('Merged accounts') account = _('Merged accounts')
if self.tree.row_expanded(path): if not self.tree.row_expanded(path) and model.iter_has_child(iter):
model[iter][C_NAME] = account
else:
model[iter][C_NAME] = '[%s]' % account model[iter][C_NAME] = '[%s]' % account
else:
model[iter][C_NAME] = account
def remove_newly_added(self, jid, account): def remove_newly_added(self, jid, account):
if jid in gajim.newly_added[account]: if jid in gajim.newly_added[account]:
@ -994,6 +994,7 @@ class RosterWindow:
'''adds contacts of group to roster treeview''' '''adds contacts of group to roster treeview'''
for jid in gajim.contacts.get_jid_list(account): for jid in gajim.contacts.get_jid_list(account):
self.add_contact_to_roster(jid, account) self.add_contact_to_roster(jid, account)
self.draw_account(account)
def fire_up_unread_messages_events(self, account): def fire_up_unread_messages_events(self, account):
'''reads from db the unread messages, and fire them up''' '''reads from db the unread messages, and fire them up'''