From 879d7cf337fa8a31703fe0bf417d5beb10295076 Mon Sep 17 00:00:00 2001 From: MiUPa <66132846+MiUPa@users.noreply.github.com> Date: Mon, 23 Feb 2026 17:19:57 +0900 Subject: [PATCH] macOS: remove dead tab title edit helper --- .../Terminal/Window Styles/TerminalWindow.swift | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift b/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift index e255ccd74..6ff1fe553 100644 --- a/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift +++ b/macos/Sources/Features/Terminal/Window Styles/TerminalWindow.swift @@ -261,19 +261,6 @@ class TerminalWindow: NSWindow, NSTextFieldDelegate { ) } - private func beginInlineTabTitleEdit(atScreenPoint screenPoint: NSPoint) -> Bool { - guard let hit = tabButtonHit(atScreenPoint: screenPoint), - let targetWindow = tabbedWindows?[safe: hit.index], - let targetController = targetWindow.windowController as? BaseTerminalController - else { return false } - - return beginInlineTabTitleEdit( - tabButton: hit.tabButton, - targetWindow: targetWindow, - targetController: targetController - ) - } - private func beginInlineTabTitleEdit( tabButton: NSView, targetWindow: NSWindow,