macOS: fix misplaced frame modifier

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/9598/head
Lukas 2025-11-15 10:14:43 +01:00
parent 466a004c39
commit 8d1dd332c6
No known key found for this signature in database
GPG Key ID: 845CB61BD38F4E49
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)
}
}
}