macOS: fix misplaced frame modifier (#9598)

As per #9504, this was supposed to be on `ZStack`, not on the overlay.
See also #9503. I cherry-picked it in the wrong place before.
pull/9599/head^2
Mitchell Hashimoto 2025-11-15 06:37:55 -08:00 committed by GitHub
commit 05366485da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -119,6 +119,7 @@ struct TerminalView<ViewModel: TerminalViewModel>: View {
UpdateOverlay()
}
}
.frame(maxWidth: .greatestFiniteMagnitude, maxHeight: .greatestFiniteMagnitude)
}
}
}
@ -136,7 +137,6 @@ fileprivate struct UpdateOverlay: View {
.padding(.trailing, 9)
}
}
.frame(maxWidth: .greatestFiniteMagnitude, maxHeight: .greatestFiniteMagnitude)
}
}
}