Add MainWindowSplitView.

This commit is contained in:
Brent Simmons
2017-05-26 13:25:42 -07:00
parent ef9d4edbd1
commit 5f565cc42e
2 changed files with 24 additions and 0 deletions

View 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
}
}
}