Changeset 6354 for trunk/src/roster_window.py
- Timestamp:
- 05/24/06 20:17:51 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/roster_window.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/roster_window.py
r6347 r6354 240 240 family = gajim.contacts.get_metacontacts_family(account, jid) 241 241 242 shown_family = [] # family members that are in roster. 242 # family members that are in roster and belong to the same account. 243 shown_family = [] 243 244 if family: 244 245 for data in family: 246 _account = data['account'] 247 #XXX When we support metacontacts from different servers, make 248 # sure that loop from #1953 is fixed and remove next 2 lines! 249 if _account != account: 250 continue 245 251 _jid = data['jid'] 246 _account = data['account']252 247 253 if self.get_contact_iter(_jid, _account): 248 254 shown_family.append(data) … … 2251 2257 2252 2258 def on_new_chat_menuitem_activate(self, widget, account): 2253 dialogs.NewChatDialog(account) 2259 dialogs.NewChatDialog(account) 2254 2260 2255 2261 def on_contents_menuitem_activate(self, widget):
