mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-18 20:34:46 +01:00
20 lines
338 B
Swift
20 lines
338 B
Swift
//
|
|
// FeedListWindowController.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 8/1/15.
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
class FeedListWindowController : NSWindowController {
|
|
|
|
override func windowDidLoad() {
|
|
|
|
window!.appearance = NSAppearance(named: .vibrantDark)
|
|
}
|
|
}
|
|
|
|
|