Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2011-08-25 12:24:34 +0400
committerDenis Fomin <fominde@gmail.com>2011-08-25 12:24:34 +0400
commit3be3cd6cd1507cf7afa9452369af27ef811d05e0 (patch)
tree2135683f220b7f07374db48d6bb56c26e833cafe /clients_icons
parentcf35269819b3b24ff7afcf20d96ac14b793015e8 (diff)
clients_icons. fix var name
Diffstat (limited to 'clients_icons')
-rw-r--r--clients_icons/clients_icons.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/clients_icons/clients_icons.py b/clients_icons/clients_icons.py
index fb7dcff..76236f3 100644
--- a/clients_icons/clients_icons.py
+++ b/clients_icons/clients_icons.py
@@ -170,8 +170,6 @@ class ClientsIconsPlugin(GajimPlugin):
@log_calls('ClientsIconsPlugin')
def connect_with_groupchat_control(self, chat_control):
- if not self.config['show_in_groupchats']:
- return
chat_control.nb_ext_renderers += 1
chat_control.columns += [gtk.gdk.Pixbuf]
self.groupchats_tree_is_transformed = True
@@ -211,7 +209,7 @@ class ClientsIconsPlugin(GajimPlugin):
if not self.config['show_in_groupchats']:
continue
caps = gc_contact.client_caps._node
- self.set_icon(store, iter_, self.muc_renderer_num, caps)
+ self.set_icon(chat_control.model, iter_, self.muc_renderer_num, caps)
chat_control.draw_all_roles()
# Recalculate column width for ellipsizin
chat_control.list_treeview.columns_autosize()
@@ -230,10 +228,10 @@ class ClientsIconsPlugin(GajimPlugin):
gc_control.list_treeview.insert_column(col, 0)
gc_control.columns = gc_control.columns[:self.muc_renderer_num] + \
gc_control.columns[self.muc_renderer_num + 1:]
- store = gtk.TreeStore(*gc_control.columns)
- store.set_sort_func(1, gc_control.tree_compare_iters)
- store.set_sort_column_id(1, gtk.SORT_ASCENDING)
- gc_control.list_treeview.set_model(store)
+ gc_control.model = gtk.TreeStore(*gc_control.columns)
+ gc_control.model.set_sort_func(1, gc_control.tree_compare_iters)
+ gc_control.model.set_sort_column_id(1, gtk.SORT_ASCENDING)
+ gc_control.list_treeview.set_model(gc_control.model)
gc_control.draw_roster()
@log_calls('ClientsIconsPlugin')