diff --git a/Sources/TUIKit/App/App.swift b/Sources/TUIKit/App/App.swift index cc2959c..7384046 100644 --- a/Sources/TUIKit/App/App.swift +++ b/Sources/TUIKit/App/App.swift @@ -581,12 +581,8 @@ internal final class AppRunner { // Default handling (only if no handler consumed the event) switch event.key { - case .escape: - // ESC always exits (could also be made configurable) - isRunning = false - case .character(let char) where char == "q" || char == "Q": - // 'q' respects quitBehavior setting + // 'q' is the only way to quit (respects quitBehavior setting) if statusBar.isQuitAllowed { isRunning = false }