Add windowTitle var to Inspector protocol

This commit is contained in:
Angelo Stavrow
2020-09-07 13:34:37 -04:00
parent ef63c18265
commit c7aa5656d8
5 changed files with 7 additions and 24 deletions

View File

@@ -38,6 +38,7 @@ final class WebFeedInspectorViewController: NSViewController, Inspector {
updateFeed()
}
}
var windowTitle: String = NSLocalizedString("Feed Inspector", comment: "Feed Inspector window title")
func canInspect(_ objects: [Any]) -> Bool {
return objects.count == 1 && objects.first is WebFeed