From 7f56ea150daabbf0452f7b1e50b59ec4b64f978d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 21 Sep 2024 10:00:30 -0700 Subject: [PATCH] typos --- macos/Sources/Ghostty/SurfaceView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macos/Sources/Ghostty/SurfaceView.swift b/macos/Sources/Ghostty/SurfaceView.swift index e4c9de1fd..8aa4e18ad 100644 --- a/macos/Sources/Ghostty/SurfaceView.swift +++ b/macos/Sources/Ghostty/SurfaceView.swift @@ -60,7 +60,7 @@ extension Ghostty { @EnvironmentObject private var ghostty: Ghostty.App // The visibility state of the mouse pointer - private var pointerVisibililty: BackportVisibility { + private var pointerVisibility: BackportVisibility { // If our window or surface loses focus we always bring it back if (!windowFocus || !surfaceFocus) { return .visible @@ -97,7 +97,7 @@ extension Ghostty { .focusedValue(\.ghosttySurfaceView, surfaceView) .focusedValue(\.ghosttySurfaceCellSize, surfaceView.cellSize) #if canImport(AppKit) - .backport.pointerVisibility(pointerVisibililty) + .backport.pointerVisibility(pointerVisibility) .backport.pointerStyle(surfaceView.pointerStyle) .onReceive(pubBecomeKey) { notification in guard let window = notification.object as? NSWindow else { return }