26 lines
472 B
Swift
26 lines
472 B
Swift
//
|
|
// FolderInspectorViewController.swift
|
|
// Evergreen
|
|
//
|
|
// Created by Brent Simmons on 1/20/18.
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
import Account
|
|
|
|
final class FolderInspectorViewController: NSViewController, Inspector {
|
|
|
|
let isFallbackInspector = false
|
|
var objects: [Any]?
|
|
|
|
func canInspect(_ objects: [Any]) -> Bool {
|
|
|
|
return objects.count == 1 && objects.first is Folder
|
|
}
|
|
|
|
func willEndInspectingObjects() {
|
|
|
|
}
|
|
}
|