* 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:
parent
ed6fabb944
commit
e209c0ba81
@ -1,5 +1,6 @@
|
|||||||
2006-08-12 Don Allingham <don@gramps-project.org>
|
2006-08-12 Don Allingham <don@gramps-project.org>
|
||||||
* src/PageView.py: fix search argument when filter applied
|
* src/ScratchPad.py: fix removal of invalid objects (bug #291)
|
||||||
|
* src/PageView.py: fix search argument when filter applied (but #317)
|
||||||
|
|
||||||
2006-08-11 Brian Matherly <brian@gramps-project.org>
|
2006-08-11 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/DetDescendantReport.py: fix spouse name printing
|
* src/plugins/DetDescendantReport.py: fix spouse name printing
|
||||||
|
@ -746,7 +746,7 @@ class ScratchPadListView:
|
|||||||
|
|
||||||
if model:
|
if model:
|
||||||
for o in model:
|
for o in model:
|
||||||
if not o.is_valid():
|
if not o[1].is_valid():
|
||||||
model.remove(o)
|
model.remove(o)
|
||||||
|
|
||||||
# Method to manage the wrapper classes.
|
# Method to manage the wrapper classes.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user