Mercurial > libervia-backend
changeset 2017:7aa58b7a47e2
quick_frontend, primitivus (contact_list): ContactList widget must now call postInit() when ready, to avoid being registered before being constructed
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 24 Jul 2016 17:56:18 +0200 |
parents | f09562b0704d |
children | 7199e6bdb94e |
files | frontends/src/primitivus/contact_list.py frontends/src/quick_frontend/quick_contact_list.py |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/frontends/src/primitivus/contact_list.py Sun Jul 24 17:56:14 2016 +0200 +++ b/frontends/src/primitivus/contact_list.py Sun Jul 24 17:56:18 2016 +0200 @@ -51,6 +51,7 @@ urwid.connect_signal(self, 'change', on_change, user_data) self.host.addListener('notification', self.onNotification, [self.profile]) self.host.addListener('notificationsClear', self.onNotification, [self.profile]) + self.postInit() def update(self, entities=None, type_=None, profile=None): """Update display, keep focus"""
--- a/frontends/src/quick_frontend/quick_contact_list.py Sun Jul 24 17:56:14 2016 +0200 +++ b/frontends/src/quick_frontend/quick_contact_list.py Sun Jul 24 17:56:18 2016 +0200 @@ -821,7 +821,6 @@ def __init__(self, host, profiles): super(QuickContactList, self).__init__(host, None, profiles) - handler.register(self) # options # for next values, None means use indivual value per profile @@ -831,6 +830,10 @@ self.show_resources = None # TODO self.show_status = None # TODO + def postInit(self): + """Method to be called by frontend after widget is initialised""" + handler.register(self) + @property def items(self): return handler.items