mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-19 00:51:51 +00:00
If the project changes the browser reloads the correct column.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12618 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6508160786
commit
b846123f5b
2 changed files with 6 additions and 3 deletions
|
@ -93,9 +93,10 @@
|
|||
|
||||
- (void)projectDictDidChange:(NSNotification *)aNotif
|
||||
{
|
||||
if (browser) {
|
||||
[browser loadColumnZero];
|
||||
}
|
||||
if (browser)
|
||||
{
|
||||
[browser reloadColumn:[browser lastColumn]];
|
||||
}
|
||||
}
|
||||
|
||||
- (NSString *)nameOfSelectedFile
|
||||
|
|
|
@ -725,6 +725,8 @@
|
|||
@"OK",nil,nil,newFile,destination);
|
||||
}
|
||||
}
|
||||
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName:@"ProjectDictDidChangeNotification" object:self];
|
||||
}
|
||||
|
||||
- (void)removeFile:(NSString *)file forKey:(NSString *)key
|
||||
|
|
Loading…
Reference in a new issue