* src/ScratchPad.py: fix removal of invalid objects (bug #291)

* src/PageView.py: fix search argument when filter applied (but #317)


svn: r7159
This commit is contained in:
Don Allingham
2006-08-12 17:24:36 +00:00
parent ed6fabb944
commit e209c0ba81
2 changed files with 3 additions and 2 deletions

View File

@@ -746,7 +746,7 @@ class ScratchPadListView:
if model:
for o in model:
if not o.is_valid():
if not o[1].is_valid():
model.remove(o)
# Method to manage the wrapper classes.