diff cagou/plugins/plugin_wid_chat.py @ 406:03554ad70846

common (jidSelector): replace implitict_update mechanism by real-time update: instead of having the possibility to (de)activate implicit update, real time update of items is now done. For now only the notifications and opened chat items are updated in real time.
author Goffi <goffi@goffi.org>
date Wed, 12 Feb 2020 20:02:58 +0100
parents f7476818f9fb
children 2caea63ae2ab
line wrap: on
line diff
--- a/cagou/plugins/plugin_wid_chat.py	Wed Feb 12 20:02:58 2020 +0100
+++ b/cagou/plugins/plugin_wid_chat.py	Wed Feb 12 20:02:58 2020 +0100
@@ -434,7 +434,6 @@
         sel_screen = Screen(name='chat_selector')
         chat_selector = ChatSelector(profile=self.profile)
         sel_screen.add_widget(chat_selector)
-        sel_screen.bind(on_pre_enter=chat_selector.on_pre_enter)
         screen_manager.add_widget(sel_screen)
         if self.show_chat_selector:
             transition = screen_manager.transition
@@ -916,9 +915,6 @@
     plugin_info_class = Chat
     use_header_input = True
 
-    def on_pre_enter(self, screen):
-        self.jid_selector.update()
-
     def on_select(self, contact_button):
         contact_jid = jid.JID(contact_button.jid)
         plugin_info = G.host.getPluginInfo(main=Chat)