Skip to content
Snippets Groups Projects
Commit cf352698 authored by Dicson's avatar Dicson
Browse files

clients_icons. quick fix after last update

parent 410b6424
No related branches found
No related tags found
No related merge requests found
......@@ -196,10 +196,10 @@ class ClientsIconsPlugin(GajimPlugin):
chat_control.fill_column(col)
chat_control.list_treeview.insert_column(col, 0)
# redraw roster
store = gtk.TreeStore(*chat_control.columns)
store.set_sort_func(1, chat_control.tree_compare_iters)
store.set_sort_column_id(1, gtk.SORT_ASCENDING)
chat_control.list_treeview.set_model(store)
chat_control.model = gtk.TreeStore(*chat_control.columns)
chat_control.model.set_sort_func(1, chat_control.tree_compare_iters)
chat_control.model.set_sort_column_id(1, gtk.SORT_ASCENDING)
chat_control.list_treeview.set_model(chat_control.model)
# draw roster
for nick in gajim.contacts.get_nick_list(chat_control.account,
chat_control.room_jid):
......
[info]
name: Clients icons
short_name: clients_icons
version: 0.9.1
version: 1.0
description: Shows the client icons in the roster
and in groupchats.
Depends: Gajim > r12506
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment