From e32d7abe6eeae9c3aa557fef2bcfe97a212688c5 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Sun, 31 May 2026 10:00:24 -0400 Subject: [PATCH] macos: fix swiftlint opening_brace issue --- macos/Sources/Ghostty/Surface View/SurfaceView_AppKit.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/macos/Sources/Ghostty/Surface View/SurfaceView_AppKit.swift b/macos/Sources/Ghostty/Surface View/SurfaceView_AppKit.swift index c0013ec78..f631c2c05 100644 --- a/macos/Sources/Ghostty/Surface View/SurfaceView_AppKit.swift +++ b/macos/Sources/Ghostty/Surface View/SurfaceView_AppKit.swift @@ -734,8 +734,7 @@ extension Ghostty { // cached value is restored next time the terminal emits a // color_change. if let cached = self.backgroundColor, - cached != self.derivedConfig.backgroundColor - { + cached != self.derivedConfig.backgroundColor { self.backgroundColor = nil } }