summaryrefslogtreecommitdiff
path: root/macos/Sources/App/macOS/AppDelegate.swift
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-06-04 11:53:19 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-06-05 07:05:13 -0700
commit77458ef3089214e8a073671fb6a56de565545033 (patch)
tree8d8a49c1a8913e71f99b11de026d4e583db84308 /macos/Sources/App/macOS/AppDelegate.swift
parentf1ed07caf441909871cde91e51a124930fa3f1f6 (diff)
macos: rename surfaceTree2 to surfaceTree
Diffstat (limited to 'macos/Sources/App/macOS/AppDelegate.swift')
-rw-r--r--macos/Sources/App/macOS/AppDelegate.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/macos/Sources/App/macOS/AppDelegate.swift b/macos/Sources/App/macOS/AppDelegate.swift
index b5023370b..c6816d50c 100644
--- a/macos/Sources/App/macOS/AppDelegate.swift
+++ b/macos/Sources/App/macOS/AppDelegate.swift
@@ -741,7 +741,7 @@ class AppDelegate: NSObject,
func findSurface(forUUID uuid: UUID) -> Ghostty.SurfaceView? {
for c in terminalManager.windows {
- for view in c.controller.surfaceTree2 {
+ for view in c.controller.surfaceTree {
if view.uuid == uuid {
return view
}