comparison frontends/src/quick_frontend/quick_contact_list.py @ 1572:6a6fe840c3a6

quick frontend: fixed resources display in quickContactList
author Goffi <goffi@goffi.org>
date Sun, 08 Nov 2015 15:16:14 +0100
parents c74015dc2785
children 683b76c1145d
comparison
equal deleted inserted replaced
1571:c668081eba1c 1572:6a6fe840c3a6
510 return 510 return
511 self.show_empty_groups = show 511 self.show_empty_groups = show
512 self.update() 512 self.update()
513 513
514 def showResources(self, show): 514 def showResources(self, show):
515 show = C.bool(show) 515 assert isinstance(show, bool)
516 if self.show_resources == show: 516 if self.show_resources == show:
517 return 517 return
518 self.show_resources = show 518 self.show_resources = show
519 self.update() 519 self.update()
520 520