From c5901bf46d0e055c6529c73ba81de02cf2cda5b0 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Fri, 10 Oct 2003 22:49:55 +0000 Subject: [PATCH] 2003-10-10 Tim Waugh * src/PeopleStore.py: Fixed bug where you needed to expand the row twice before it shows the people. svn: r2223 --- ChangeLog | 4 ++++ src/PeopleStore.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 64ed63e82..48e14e492 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-10-10 Tim Waugh + * src/PeopleStore.py: Fixed bug where you needed to expand the row + twice before it shows the people. + 2003-10-09 Alex Roitman * src/gramps.glade: Remove hot keys from toolbar buttons. Add editing items under Edit menu. diff --git a/src/PeopleStore.py b/src/PeopleStore.py index dc118d7c0..aaab371f5 100644 --- a/src/PeopleStore.py +++ b/src/PeopleStore.py @@ -229,6 +229,8 @@ class PeopleStore: col += 1 self.model.set_value(new_iter,_BCOL,pango.WEIGHT_NORMAL) self.parent.id2col[d[1]] = (self,new_iter) + + self.expand_row (name, iter) def add(self,data,select=0): self.count = self.count + 1