Improvements

This commit is contained in:
Isaac
2024-04-09 17:08:31 +04:00
parent 004f49affe
commit 668ad2906d
5 changed files with 57 additions and 23 deletions

View File

@@ -2150,6 +2150,7 @@ public protocol ContextExtractedContentSource: AnyObject {
var initialAppearanceOffset: CGPoint { get }
var centerVertically: Bool { get }
var keepInPlace: Bool { get }
var adjustContentForSideInset: Bool { get }
var ignoreContentTouches: Bool { get }
var blurBackground: Bool { get }
var shouldBeDismissed: Signal<Bool, NoError> { get }
@@ -2169,6 +2170,10 @@ public extension ContextExtractedContentSource {
return false
}
var adjustContentForSideInset: Bool {
return false
}
var actionsHorizontalAlignment: ContextActionsHorizontalAlignment {
return .default
}