macOS: remove dead tab title edit helper

This commit is contained in:
MiUPa
2026-02-23 17:19:57 +09:00
committed by Mitchell Hashimoto
parent 368e190a41
commit 879d7cf337

View File

@@ -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,