minor fix after merging latest dev

pull/891/head
Ryan ZHAO 1 year ago
parent 787f491236
commit b443e72092

@ -365,7 +365,7 @@ struct SearchResultCell: View {
// with the term so we use the regex below to ensure we only highlight those cases)
normalizedSnippet
.ranges(
of: (CurrentAppContext().isRTL ?
of: (Singleton.appContext.isRTL ?
"(\(part.lowercased()))(^|[^a-zA-Z0-9])" :
"(^|[^a-zA-Z0-9])(\(part.lowercased()))"
),

@ -10,7 +10,7 @@ struct ViewControllerHolder {
struct ViewControllerKey: EnvironmentKey {
static var defaultValue: ViewControllerHolder {
return ViewControllerHolder(value: CurrentAppContext().mainWindow?.rootViewController)
return ViewControllerHolder(value: Singleton.appContext.mainWindow?.rootViewController)
}
}

Loading…
Cancel
Save