Bugfix: Index not refreshing on manual refresh

The window controller should be calling the content controller's refresh and not the repository's.
This commit is contained in:
Nathan Kinsinger
2010-03-20 18:11:37 -06:00
parent ef26909d75
commit e0a3422439
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -153,7 +153,7 @@
- (IBAction) refresh:(id)sender
{
[repository forceUpdateRevisions];
[contentController refresh:self];
}
- (void) updateStatus
+1
View File
@@ -26,5 +26,6 @@
- (void) removeView;
- (void) updateView;
- (NSResponder *)firstResponder;
- (IBAction) refresh:(id)sender;
@end
+4
View File
@@ -43,6 +43,10 @@
{
}
- (IBAction) refresh: sender
{
}
- (NSResponder *)firstResponder;
{
return nil;