mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-23 14:52:24 +00:00
Add a 2 second delay before the About window shows up on the first run
This commit is contained in:
parent
ed58467d12
commit
f444da80bc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user