diff --git a/macos/Sources/App/iOS/iOSApp.swift b/macos/Sources/App/iOS/iOSApp.swift index 50c115293..ba1993296 100644 --- a/macos/Sources/App/iOS/iOSApp.swift +++ b/macos/Sources/App/iOS/iOSApp.swift @@ -16,7 +16,12 @@ struct iOS_GhosttyTerminal: View { @EnvironmentObject private var ghostty_app: Ghostty.App var body: some View { - Ghostty.Terminal() + ZStack { + // Make sure that our background color extends to all parts of the screen + Color(ghostty_app.config.backgroundColor).ignoresSafeArea() + + Ghostty.Terminal() + } } }