Skip to content

Commit

Permalink
Increase the size of the release notes window.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukele committed Mar 28, 2013
1 parent 69e0ae3 commit 8da5d5e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MacGPG2_Updater/AppDelegate.m
Expand Up @@ -9,7 +9,13 @@ - (void)terminateIfIdle {
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
updater = [SUUpdater sharedUpdater];
updater.delegate = self;
[NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(terminateIfIdle) userInfo:nil repeats:YES];
}

- (void)updateAlert:(SUUpdateAlert *)updateAlert willShowReleaseNotesWithSize:(NSSize *)size {
size->width = 600;
size->height = 350;
}

@end

0 comments on commit 8da5d5e

Please sign in to comment.