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