diff --git a/ChangeLog b/ChangeLog index 111e225d8..4e8f408e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-07-01 Don Allingham + * src/gramps_main.py: disable find old "find" function + * src/gramps.glade: enable TreeView find function + * src/PeopleView.py: don't unselect a row if it isn't a valid person. + 2004-06-30 Alex Roitman * src/gramps_main.py (on_export_activate): Delegate work to DbPrompter. diff --git a/src/PeopleView.py b/src/PeopleView.py index a872ed006..d7463547c 100644 --- a/src/PeopleView.py +++ b/src/PeopleView.py @@ -143,7 +143,6 @@ class PeopleView: self.parent.change_active_person(person) except: self.parent.change_active_person(None) - self.person_selection.unselect_all() def change_db(self,db): self.build_columns() diff --git a/src/gramps.glade b/src/gramps.glade index 97d428721..0fbbf96b3 100644 --- a/src/gramps.glade +++ b/src/gramps.glade @@ -56,7 +56,7 @@ - + True gtk-new 1 @@ -78,7 +78,7 @@ - + True gtk-open 1 @@ -106,7 +106,7 @@ - + True gtk-convert 1 @@ -128,7 +128,7 @@ - + True gtk-save-as 1 @@ -156,7 +156,7 @@ - + True gtk-quit 1 @@ -191,7 +191,7 @@ - + True gtk-undo 1 @@ -228,7 +228,7 @@ - + True gtk-add 1 @@ -251,7 +251,7 @@ - + True gtk-remove 1 @@ -280,28 +280,6 @@ - - - True - _Find... - True - - - - - - True - gtk-find - 1 - 0.5 - 0.5 - 0 - 0 - - - - - True @@ -311,7 +289,7 @@ - + True gtk-convert 1 @@ -338,7 +316,7 @@ - + True gtk-preferences 1 @@ -359,7 +337,7 @@ - + True gtk-properties 1 @@ -380,7 +358,7 @@ - + True gtk-home 1 @@ -466,7 +444,7 @@ - + True gtk-index 1 @@ -488,7 +466,7 @@ - + True gnome-stock-book-open 1 @@ -561,7 +539,7 @@ - + True gtk-help 1 @@ -582,7 +560,7 @@ - + True gnome-stock-book-open 1 @@ -609,7 +587,7 @@ - + True gtk-jump-to 1 @@ -630,7 +608,7 @@ - + True gnome-stock-mail 1 @@ -684,7 +662,7 @@ - + True gnome-stock-about 1 @@ -1678,7 +1656,7 @@ False True False - False + True @@ -1930,7 +1908,7 @@ True True True - False + True @@ -1960,7 +1938,7 @@ False True False - False + True @@ -1990,7 +1968,7 @@ False True False - False + True @@ -2020,7 +1998,7 @@ False True False - False + True @@ -2209,7 +2187,7 @@ False True False - False + True @@ -2264,7 +2242,7 @@ True True True - False + True @@ -2294,7 +2272,7 @@ False True False - False + True @@ -2324,7 +2302,7 @@ False True False - False + True @@ -2354,7 +2332,7 @@ False True False - False + True diff --git a/src/gramps_main.py b/src/gramps_main.py index 636453ee2..987e4dedc 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -308,8 +308,8 @@ class Gramps: "on_family_activate" : self.on_family_activate, "on_family1_activate" : self.on_family1_activate, "on_family2_activate" : self.on_family2_activate, - "on_find_activate" : self.on_find_activate, - "on_findname_activate" : self.on_findname_activate, +# "on_find_activate" : self.on_find_activate, +# "on_findname_activate" : self.on_findname_activate, "on_home_clicked" : self.on_home_clicked, "on_new_clicked" : self.on_new_clicked, "on_notebook1_switch_page" : self.on_views_switch_page,