From 5fef8de2ae52b1f6c9b5626d9d7a6b376db76901 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 14 Jan 2023 13:27:56 -0500 Subject: [PATCH] Enable find interaction on Mac --- Reader/Screens/Read/ReadViewController.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Reader/Screens/Read/ReadViewController.swift b/Reader/Screens/Read/ReadViewController.swift index b54126d..3c86faf 100644 --- a/Reader/Screens/Read/ReadViewController.swift +++ b/Reader/Screens/Read/ReadViewController.swift @@ -74,10 +74,7 @@ class ReadViewController: UIViewController { webView.isOpaque = false webView.backgroundColor = .clear if #available(iOS 16.0, *) { - // TODO: Xcode 14 RC doesn't have the macOS 13 SDK, so we can't use this - #if !targetEnvironment(macCatalyst) webView.isFindInteractionEnabled = true - #endif } if let content = itemContentHTML() { webView.loadHTMLString(content, baseURL: item.url)