* src/DisplayModels.py: flush cache on row update

svn: r6467
This commit is contained in:
Don Allingham 2006-04-27 18:31:41 +00:00
parent 07a81d3bd6
commit 2ccd918953
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2006-04-27 Don Allingham <don@gramps-project.org> 2006-04-27 Don Allingham <don@gramps-project.org>
* src/DisplayModels.py: flush cache on row update
* src/DisplayTabs.py: check of event==None when determining default type * src/DisplayTabs.py: check of event==None when determining default type
* src/ViewManager.py: support for keypress events * src/ViewManager.py: support for keypress events
* src/gramps.py: fix gnome init * src/gramps.py: fix gnome init

View File

@ -623,6 +623,7 @@ class ListView(BookMarkView):
self.model.add_row_by_handle(handle) self.model.add_row_by_handle(handle)
def row_update(self,handle_list): def row_update(self,handle_list):
self.model.prev_handle = None
if self.active: if self.active:
for handle in handle_list: for handle in handle_list:
self.model.update_row_by_handle(handle) self.model.update_row_by_handle(handle)