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.
|
|
|
|
//
|
|
|
|
|
2018-02-02 22:51:32 -08:00
|
|
|
import AppKit
|
2017-05-26 13:25:42 -07:00
|
|
|
|
|
|
|
class MainWindowSplitView: NSSplitView {
|
2018-02-14 13:14:25 -08:00
|
|
|
|
2018-02-23 23:02:30 -08:00
|
|
|
private let splitViewDividerColor = NSColor(calibratedWhite: 0.75, alpha: 1.0)
|
2018-02-14 13:14:25 -08:00
|
|
|
|
2017-05-26 13:25:42 -07:00
|
|
|
override var dividerColor: NSColor {
|
2018-02-14 13:14:25 -08:00
|
|
|
return splitViewDividerColor
|
2017-05-26 13:25:42 -07:00
|
|
|
}
|
|
|
|
}
|