Add a 2 second delay before the About window shows up on the first run

This commit is contained in:
Grant Limberg 2016-10-17 13:43:44 -07:00
parent ed58467d12
commit f444da80bc

View File

@ -84,9 +84,12 @@
[prefsView setLaunchAtLoginEnabled:YES];
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self showAbout];
}];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
sleep(2);
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self showAbout];
}];
});
}
[self.monitor updateNetworkInfo];
@ -316,7 +319,11 @@
}
- (void)closeJoinNetworkPopover {
if (self.transientMonitor) {
[NSEvent removeMonitor:self.transientMonitor];
self.transientMonitor = nil;
}
[self.joinNetworkPopover close];
}
@end