Skip to content

Commit

Permalink
fixed bug with changing name of newly added app group
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingmachine committed Sep 7, 2012
1 parent 4265347 commit b9be984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Foreman/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ - (void) setFreshWindow {

- (void)addAppGroup:(NSNotification *)notification
{
NSDictionary* group = [notification userInfo];
NSMutableDictionary* group = [[NSMutableDictionary alloc] initWithDictionary:[notification userInfo]];
[appGroups addObject:group];
[self displayAppGroup:group];
[self saveAppGroups];
Expand Down

0 comments on commit b9be984

Please sign in to comment.