mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
21 lines
406 B
Swift
Executable File
21 lines
406 B
Swift
Executable File
//
|
|
// NSWindow-Extensions.swift
|
|
// RSCore
|
|
//
|
|
// Created by Brent Simmons on 10/10/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
public extension NSWindow {
|
|
|
|
public func makeFirstResponderUnlessDescendantIsFirstResponder(_ responder: NSResponder) {
|
|
|
|
if let fr = firstResponder, fr.hasAncestor(responder) {
|
|
return
|
|
}
|
|
makeFirstResponder(responder)
|
|
}
|
|
}
|