don't show Transport and not in the roster groups in edit groups dialog
This commit is contained in:
parent
30bd3070a2
commit
ee108accf4
|
@ -99,6 +99,8 @@ class Edit_groups_dialog:
|
|||
store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_BOOLEAN)
|
||||
self.list.set_model(store)
|
||||
for g in self.plugin.roster.groups[self.account].keys():
|
||||
if g in ['Transports', 'not in the roster']:
|
||||
continue
|
||||
iter = store.append()
|
||||
store.set(iter, 0, g)
|
||||
if g in self.user.groups:
|
||||
|
|
Loading…
Reference in New Issue