From 502f5656b8904e7ebc8fa67b5b0afeb8759a5516 Mon Sep 17 00:00:00 2001 From: Nate Weaver Date: Thu, 19 Sep 2019 11:27:04 -0500 Subject: [PATCH] Don't hide the Web Inspector menu item since the entire Debug menu is removed for release builds --- Mac/AppDelegate.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 190f747d3..eb122e939 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -42,7 +42,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations, @IBOutlet var sortByOldestArticleOnTopMenuItem: NSMenuItem! @IBOutlet var sortByNewestArticleOnTopMenuItem: NSMenuItem! @IBOutlet var checkForUpdatesMenuItem: NSMenuItem! - @IBOutlet var enableWebInspectorMenuItem: NSMenuItem! var unreadCount = 0 { didSet { @@ -117,7 +116,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations, #if MAC_APP_STORE checkForUpdatesMenuItem.isHidden = true - enableWebInspectorMenuItem.isHidden = true #endif appName = (Bundle.main.infoDictionary!["CFBundleExecutable"]! as! String)