From 844a69446db1f7b1f3af4e230343a0bdac06daa4 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Fri, 28 Dec 2018 22:11:55 -0800 Subject: [PATCH] Add showPrivacyPolicy action to app delegate. --- NetNewsWire/AppDelegate.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NetNewsWire/AppDelegate.swift b/NetNewsWire/AppDelegate.swift index 53cc79625..2def798a2 100644 --- a/NetNewsWire/AppDelegate.swift +++ b/NetNewsWire/AppDelegate.swift @@ -495,6 +495,10 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations, AppDefaults.timelineSortDirection = .orderedDescending } + + @IBAction func showPrivacyPolicy(_ sender: Any?) { + Browser.open(AppConstants.privacyPolicyURL, inBackground: false) + } } private extension AppDelegate {