[WIP] Story collage

This commit is contained in:
Ilya Laktyushin
2024-11-27 18:41:03 +04:00
parent 0794812bae
commit d2b5476293
78 changed files with 6086 additions and 1224 deletions

View File

@@ -2359,6 +2359,7 @@ public final class ContextController: ViewController, StandalonePresentableContr
case notificationTopicExceptions(text: String, action: (() -> Void)?)
case starsReactions(topCount: Int)
case videoProcessing
case collageReordering
public static func ==(lhs: Tip, rhs: Tip) -> Bool {
switch lhs {
@@ -2416,6 +2417,12 @@ public final class ContextController: ViewController, StandalonePresentableContr
} else {
return false
}
case .collageReordering:
if case .collageReordering = rhs {
return true
} else {
return false
}
}
}
}