* src/DataViews/_EventView.py (remove): Use reference map to find

references to remove. 
	* src/ViewManager.py (undo,redo): Busy cursor.
	* src/DataViews/_PersonView.py (delete_person_response): Busy cursor;
	Use reference map to find references to remove.


svn: r7940
This commit is contained in:
Alex Roitman
2007-01-20 17:21:45 +00:00
parent 832095aea5
commit 21688ae8d9
4 changed files with 19 additions and 14 deletions

View File

@@ -1045,10 +1045,14 @@ class ViewManager:
pass
def undo(self, obj):
self.uistate.set_busy_cursor(1)
self.state.db.undo()
self.uistate.set_busy_cursor(0)
def redo(self, obj):
self.uistate.set_busy_cursor(1)
self.state.db.redo()
self.uistate.set_busy_cursor(0)
def undo_history(self, obj):
try: