* src/Exporter.py: Set initial person in case there's no active.

* src/ViewManager.py (find_initial_person): Remove method.
* src/GrampsDb/_GrampsDbBase.py (find_initial_person): Add method.


svn: r5856
This commit is contained in:
Alex Roitman
2006-01-29 22:05:20 +00:00
parent 79ae8c886f
commit ed311ea2d2
4 changed files with 13 additions and 15 deletions

@ -784,7 +784,7 @@ class ViewManager:
GrampsKeys.save_last_file(name)
self.relationship = self.RelClass(self.state.db)
self.state.change_active_person(self.find_initial_person())
self.state.change_active_person(self.state.db.find_initial_person())
self.change_page(None,None)
self.state.db.undo_callback = self.change_undo_label
self.state.db.redo_callback = self.change_redo_label
@ -844,15 +844,6 @@ class ViewManager:
import Plugins
Plugins.ToolPlugins(self.state,self.uistate,[])
def find_initial_person(self):
person = self.state.db.get_default_person()
if not person:
the_ids = self.state.db.get_person_handles(sort_handles=False)
if the_ids:
the_ids.sort()
person = self.state.db.get_person_from_handle(the_ids[0])
return person
def scratchpad(self,obj):
import ScratchPad
ScratchPad.ScratchPadWindow(self.state, self)