Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/listview.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@sugarlabs.org>2009-01-11 11:18:27 (GMT)
committer Tomeu Vizoso <tomeu@sugarlabs.org>2009-01-11 11:18:27 (GMT)
commitf583b08ca882d127f1df75d893cb5884649f21c7 (patch)
tree42b3a2f56d3a66bff896105a2e254291c74f70d9 /src/jarabe/journal/listview.py
parentdca9571f19408b92f83cfca99a1da843e5e04dc8 (diff)
Add support for text queries on removable devices
Diffstat (limited to 'src/jarabe/journal/listview.py')
-rw-r--r--src/jarabe/journal/listview.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jarabe/journal/listview.py b/src/jarabe/journal/listview.py
index 70f720e..3a5a909 100644
--- a/src/jarabe/journal/listview.py
+++ b/src/jarabe/journal/listview.py
@@ -244,7 +244,8 @@ class BaseListView(gtk.HBox):
self._progress_bar.show()
def _stop_progress_bar(self):
- self.remove(self.get_children()[0])
+ for widget in self.get_children():
+ self.remove(widget)
self._progress_bar = None
self.pack_start(self._canvas)