Sorted merged account line right click -> account_list
This commit is contained in:
parent
8decfc44a2
commit
d39055fe3c
|
@ -1578,7 +1578,11 @@ class RosterWindow:
|
||||||
if not iconset:
|
if not iconset:
|
||||||
iconset = DEFAULT_ICONSET
|
iconset = DEFAULT_ICONSET
|
||||||
path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16')
|
path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16')
|
||||||
|
accounts = [] # Put accounts in a list to sort them
|
||||||
for account in gajim.connections:
|
for account in gajim.connections:
|
||||||
|
accounts.append(account)
|
||||||
|
accounts.sort()
|
||||||
|
for account in accounts:
|
||||||
state_images = self.load_iconset(path)
|
state_images = self.load_iconset(path)
|
||||||
item = gtk.ImageMenuItem(account)
|
item = gtk.ImageMenuItem(account)
|
||||||
show = gajim.SHOW_LIST[gajim.connections[account].connected]
|
show = gajim.SHOW_LIST[gajim.connections[account].connected]
|
||||||
|
|
Loading…
Reference in New Issue