macOS: fix Main actor-isolated static property 'find' warnings

This commit is contained in:
Lukas
2026-07-23 22:21:45 +02:00
parent 97ae257497
commit c78226bfae

View File

@@ -138,9 +138,9 @@ extension Ghostty.OSSurfaceView {
init(
from startSearch: Ghostty.Action.StartSearch,
pasteboard: NSPasteboard = NSPasteboard.find
pasteboard: NSPasteboard? = nil
) {
self.pasteboard = pasteboard
self.pasteboard = pasteboard ?? .find
if let needle = startSearch.needle, !needle.isEmpty {
setNeedle(needle)
writePasteboardNeedle()