#4715: Filter new items that appear in the mesh view.

This commit is contained in:
Tomeu Vizoso 2007-11-08 20:23:11 +01:00
parent db4a7116e5
commit 3e491c2dc7
2 changed files with 7 additions and 0 deletions

1
NEWS
View File

@ -1,3 +1,4 @@
* #4715: Filter new items that appear in the mesh view. (tomeu)
* #4716: Filter correctly activity icons in the mesh view. (tomeu)
* Use HOME/.i18n in control panel and reset jabber_registered to False (erikos)

View File

@ -509,6 +509,9 @@ class MeshBox(hippo.CanvasBox):
icon = ActivityView(self._shell, activity_model)
self._layout.add(icon)
if hasattr(icon, 'set_filter'):
icon.set_filter(self._query)
self._activities[activity_model.get_id()] = icon
def _remove_activity(self, activity_model):
@ -521,6 +524,9 @@ class MeshBox(hippo.CanvasBox):
icon = AccessPointView(ap_model, meshdev)
self._layout.add(icon)
if hasattr(icon, 'set_filter'):
icon.set_filter(self._query)
self._access_points[ap_model.get_id()] = icon
def _remove_access_point(self, ap_model):