ghostty/macos/Sources/Features/Terminal/TerminalWindow.swift
2023-11-02 22:00:33 -07:00

9 lines
283 B
Swift

import Cocoa
class TerminalWindow: NSWindow {
// Both of these must be true for windows without decorations to be able to
// still become key/main and receive events.
override var canBecomeKey: Bool { return true }
override var canBecomeMain: Bool { return true }
}