Mercurial > libervia-web
diff src/browser/sat_browser/contact_group.py @ 647:e0021d571eef frontends_multi_profiles
browser side: moved ContactBox, ContactsPanel, ContactLabeland ContactMenuBar to base_widget/base_panels so they can be reused outside of contact_list module
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 26 Feb 2015 13:10:46 +0100 |
parents | 32dbbc941123 |
children | 6d3142b782c3 |
line wrap: on
line diff
--- a/src/browser/sat_browser/contact_group.py Wed Feb 25 19:44:10 2015 +0100 +++ b/src/browser/sat_browser/contact_group.py Thu Feb 26 13:10:46 2015 +0100 @@ -29,6 +29,7 @@ import dialog import list_manager import contact_list +import base_panels unicode = str # FIXME: pyjamas workaround @@ -185,7 +186,7 @@ """Add the contact list to the DockPanel.""" self.toggle = Button("", self.toggleContacts) self.toggle.addStyleName("toggleAssignedContacts") - self.contacts = contact_list.BaseContactsPanel(self.host) + self.contacts = base_panels.ContactsPanel(self.host) for contact in self.all_contacts: self.contacts.add(contact) contact_panel = VerticalPanel()