update the tracker table right away when adding/removing trackers

This commit is contained in:
Mitchell Livingston 2009-10-11 13:45:50 +00:00
parent 2af26e1d7c
commit 264774859f
1 changed files with 4 additions and 0 deletions

View File

@ -1088,6 +1088,8 @@ typedef enum
[fTrackerTable setTrackers: fTrackers];
[fTrackerTable reloadData];
[fTrackerTable deselectAll: self];
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateUI" object: nil]; //incase sort by tracker
}
- (void) addRemoveTracker: (id) sender
@ -1767,6 +1769,8 @@ typedef enum
[fTrackerTable setTrackers: fTrackers];
[fTrackerTable reloadData];
[fTrackerTable deselectAll: self];
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateUI" object: nil]; //incase sort by tracker
}
@end