Remove isDisplayingSheet property now that it’s part of an NSWindowController extension.

This commit is contained in:
Brent Simmons 2018-02-17 18:14:51 -08:00
parent 8e7863c66d
commit 58a1a92481
1 changed files with 0 additions and 7 deletions

View File

@ -24,13 +24,6 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations {
return isWindowLoaded && window!.isVisible
}
var isDisplayingSheet: Bool {
if let _ = window?.attachedSheet {
return true
}
return false
}
// MARK: NSWindowController
private let windowAutosaveName = NSWindow.FrameAutosaveName(rawValue: kWindowFrameKey)