mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-18 20:34:46 +01:00
19 lines
375 B
Swift
19 lines
375 B
Swift
//
|
|
// MainWindowSplitView.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 2/5/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
class MainWindowSplitView: NSSplitView {
|
|
|
|
private let splitViewDividerColor = NSColor(calibratedWhite: 0.65, alpha: 1.0)
|
|
|
|
override var dividerColor: NSColor {
|
|
return splitViewDividerColor
|
|
}
|
|
}
|