macos: rename surfaceTree2 to surfaceTree

This commit is contained in:
Mitchell Hashimoto
2025-06-04 11:53:19 -07:00
parent f1ed07caf4
commit 77458ef308
8 changed files with 59 additions and 61 deletions

View File

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