mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add MainWindowSplitView.
This commit is contained in:
20
Evergreen/MainWindow/MainWindowSplitView.swift
Normal file
20
Evergreen/MainWindow/MainWindowSplitView.swift
Normal file
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// MainWindowSplitView.swift
|
||||
// Rainier
|
||||
//
|
||||
// Created by Brent Simmons on 2/5/16.
|
||||
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
||||
//
|
||||
|
||||
import Cocoa
|
||||
|
||||
private let splitViewDividerColor = NSColor(calibratedWhite: 0.8, alpha: 1.0)
|
||||
|
||||
class MainWindowSplitView: NSSplitView {
|
||||
|
||||
override var dividerColor: NSColor {
|
||||
get {
|
||||
return splitViewDividerColor
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user