소스 검색

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

Grant Limberg 8 년 전
부모
커밋
de7e8a1ca4
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      macui/ZeroTier One/AboutViewController.m

+ 2 - 1
macui/ZeroTier One/AboutViewController.m

@@ -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) {