Translation improvements

This commit is contained in:
Ilya Laktyushin
2023-02-01 00:45:22 +04:00
parent 6ee0ae2cec
commit 9922543d01
7 changed files with 687 additions and 103 deletions

View File

@@ -2215,12 +2215,18 @@ public final class ContextControllerReferenceViewInfo {
}
public protocol ContextReferenceContentSource: AnyObject {
var keepInPlace: Bool { get }
var shouldBeDismissed: Signal<Bool, NoError> { get }
func transitionInfo() -> ContextControllerReferenceViewInfo?
}
public extension ContextReferenceContentSource {
var keepInPlace: Bool {
return false
}
var shouldBeDismissed: Signal<Bool, NoError> {
return .single(false)
}