Alters Find in Article to escape regex characters by default

This commit is contained in:
Brian Sanders
2020-05-13 05:29:09 -04:00
parent 737f4bfdf5
commit 98e0434077
2 changed files with 26 additions and 26 deletions

View File

@@ -684,6 +684,7 @@ private extension WebViewController {
private struct FindInArticleOptions: Codable {
var text: String
var caseSensitive = false
var regex = false
}