summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Limberg <glimberg@gmail.com>2016-06-30 20:28:04 -0700
committerGrant Limberg <glimberg@gmail.com>2016-06-30 20:28:04 -0700
commit58207b30d1b3da3d5f9e47496d5cdbaab79675ea (patch)
treeda8d82174e78b771c52da9680dc0097b344e4c8a
parentf4192d7b9ef1cd151eae9175e9ecfce34bffc01c (diff)
downloadinfinitytier-58207b30d1b3da3d5f9e47496d5cdbaab79675ea.tar.gz
infinitytier-58207b30d1b3da3d5f9e47496d5cdbaab79675ea.zip
now that the network details list uses the default background color of the pane its embedded in, we don't have to force to the "Light" theme, even if the user has selected the "dark" theme for the top menu bar.
-rw-r--r--ZeroTier One/AppDelegate.swift9
1 files changed, 0 insertions, 9 deletions
diff --git a/ZeroTier One/AppDelegate.swift b/ZeroTier One/AppDelegate.swift
index b7e4a055..887bab56 100644
--- a/ZeroTier One/AppDelegate.swift
+++ b/ZeroTier One/AppDelegate.swift
@@ -60,8 +60,6 @@ class AppDelegate: NSObject, NSApplicationDelegate {
nibName: "JoinNetworkViewController", bundle: nil)
joinNetworkPopover.behavior = .Transient
- joinNetworkPopover.appearance = NSAppearance(named: NSAppearanceNameAqua)
-
let showNetworksView = ShowNetworksViewController(
nibName: "ShowNetworksViewController", bundle: nil)
showNetworksView?.netMonitor = monitor
@@ -69,20 +67,13 @@ class AppDelegate: NSObject, NSApplicationDelegate {
networkListPopover.contentViewController = showNetworksView
networkListPopover.behavior = .Transient
- networkListPopover.appearance = NSAppearance(named: NSAppearanceNameAqua)
-
preferencesPopover.contentViewController = PreferencesViewController(
nibName: "PreferencesViewController", bundle: nil)
preferencesPopover.behavior = .Transient
- preferencesPopover.appearance = NSAppearance(named: NSAppearanceNameAqua)
-
aboutPopover.contentViewController = AboutViewController(
nibName: "AboutViewController", bundle: nil)
aboutPopover.behavior = .Transient
-
- aboutPopover.appearance = NSAppearance(named: NSAppearanceNameAqua)
-
}
func applicationWillTerminate(aNotification: NSNotification) {