* src/DisplayState.py (push): Typo.
svn: r5662
This commit is contained in:
parent
db57e2388f
commit
ab4ce85db0
@ -1,3 +1,6 @@
|
|||||||
|
2006-01-03 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/DisplayState.py (push): Typo.
|
||||||
|
|
||||||
2006-01-03 Don Allingham <don@gramps-project.org>
|
2006-01-03 Don Allingham <don@gramps-project.org>
|
||||||
* src/FamilyView.py: new format
|
* src/FamilyView.py: new format
|
||||||
|
|
||||||
|
@ -92,11 +92,9 @@ class History(GrampsDb.GrampsDBCallback):
|
|||||||
self.prune()
|
self.prune()
|
||||||
if len(self.history) == 0 or person_handle != self.history[-1]:
|
if len(self.history) == 0 or person_handle != self.history[-1]:
|
||||||
self.history.append(person_handle)
|
self.history.append(person_handle)
|
||||||
if person_handle not in self.mhistory:
|
if person_handle in self.mhistory:
|
||||||
self.mhistory.append(person_handle)
|
|
||||||
else:
|
|
||||||
self.mhistory.remove(person_handle)
|
self.mhistory.remove(person_handle)
|
||||||
self.mhistory.push(person_handle)
|
self.mhistory.append(person_handle)
|
||||||
self.index += 1
|
self.index += 1
|
||||||
self.emit('menu-changed',(self.mhistory,))
|
self.emit('menu-changed',(self.mhistory,))
|
||||||
self.emit('changed',(self.history,))
|
self.emit('changed',(self.history,))
|
||||||
|
Loading…
Reference in New Issue
Block a user