Various improvements

This commit is contained in:
Ilya Laktyushin
2025-03-14 13:35:44 +04:00
parent ff34190f92
commit fed338985d
38 changed files with 914 additions and 534 deletions

View File

@@ -2969,6 +2969,12 @@ public final class SharedAccountContextImpl: SharedAccountContext {
if let lastController = controllers.last as? ViewController {
lastController.present(tooltipController, in: .window(.root))
}
Queue.mainQueue().after(0.5) {
var controllers = navigationController.viewControllers
controllers = controllers.filter { !($0 is GiftViewScreen) }
navigationController.setViewControllers(controllers, animated: false)
}
}
}