2017-05-26 13:25:42 -07:00
|
|
|
//
|
|
|
|
// MainWindowSplitView.swift
|
2017-05-27 10:43:27 -07:00
|
|
|
// Evergreen
|
2017-05-26 13:25:42 -07:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 2/5/16.
|
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
|
|
|
|
class MainWindowSplitView: NSSplitView {
|
|
|
|
|
2017-12-16 10:18:02 -08:00
|
|
|
private let splitViewDividerColor = NSColor(calibratedWhite: 0.65, alpha: 1.0)
|
2017-10-05 20:34:29 -07:00
|
|
|
|
2017-05-26 13:25:42 -07:00
|
|
|
override var dividerColor: NSColor {
|
|
|
|
get {
|
|
|
|
return splitViewDividerColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|