Merge branch 'mac-candidate'

This commit is contained in:
Brent Simmons 2019-07-27 15:44:34 -07:00
commit 58a7e1bc7d
2 changed files with 0 additions and 18 deletions

View File

@ -12,10 +12,6 @@ final class DetailContainerView: NSView {
@IBOutlet var detailStatusBarView: DetailStatusBarView! @IBOutlet var detailStatusBarView: DetailStatusBarView!
override var isOpaque: Bool {
return true
}
var contentViewConstraints: [NSLayoutConstraint]? var contentViewConstraints: [NSLayoutConstraint]?
var contentView: NSView? { var contentView: NSView? {
@ -39,9 +35,4 @@ final class DetailContainerView: NSView {
} }
} }
} }
override func draw(_ dirtyRect: NSRect) {
NSColor.textBackgroundColor.setFill()
dirtyRect.fill()
}
} }

View File

@ -33,14 +33,5 @@ final class TimelineContainerView: NSView {
} }
} }
} }
override var isOpaque: Bool {
return true
}
override func draw(_ dirtyRect: NSRect) {
NSColor.textBackgroundColor.setFill()
dirtyRect.fill()
}
} }