From efb6072af875b422dc81121200900e04ae10d313 Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Mon, 1 Sep 2025 17:21:47 +0100 Subject: [PATCH] fix crtview making it look gray --- ShhShell/Views/Terminal/ShellView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShhShell/Views/Terminal/ShellView.swift b/ShhShell/Views/Terminal/ShellView.swift index ffe211e..9a758a2 100644 --- a/ShhShell/Views/Terminal/ShellView.swift +++ b/ShhShell/Views/Terminal/ShellView.swift @@ -25,7 +25,7 @@ struct ShellView: View { TerminalController(handler: handler, hostsManager: hostsManager) .brightness(hostsManager.settings.filter == .crt ? 0.2 : 0.0) - if hostsManager.settings.filter == .crt { + if #available(iOS 17, *), hostsManager.settings.filter == .crt { CRTView() .opacity(0.75) .brightness(-0.2)