* src/gramps_main.py: handle status bar message with autosave

* src/FamilyView.py: add right-context menus in the family view


svn: r1947
This commit is contained in:
Don Allingham
2003-08-01 03:38:51 +00:00
parent a93605c8a7
commit 40619fa17f
2 changed files with 116 additions and 9 deletions

View File

@@ -1284,7 +1284,9 @@ class Gramps:
self.status_text(_("autosaving..."));
try:
self.db.save(filename,self.quick_progress)
self.status_text(_("autosave complete"));
self.status_text(_("autosave complete"))
gtk.timeout_add(5000,self.modify_statusbar)
self.load_progress(0)
except (IOError,OSError),msg:
self.status_text("%s - %s" % (_("autosave failed"),msg))
except: