fix About view on Mac so that it opens links in the system web browser

This commit is contained in:
Grant Limberg 2017-02-14 16:39:15 -08:00
parent aa2ee3f7be
commit de7e8a1ca4

View File

@ -32,7 +32,8 @@
[self.webView.layer setCornerRadius:1.0f];
self.webView.layer.masksToBounds = YES;
[self.webView.layer setBorderColor:[[NSColor darkGrayColor] CGColor]];
self.webView.policyDelegate = self;
NSBundle *bundle = [NSBundle mainBundle];
NSURL *path = [bundle URLForResource:@"about" withExtension:@"html"];
if(path) {