This commit is contained in:
Isaac
2025-11-06 12:53:18 +04:00
parent 481419ced0
commit 6b330351e1
8 changed files with 86 additions and 35 deletions

View File

@@ -37,9 +37,9 @@ extension ChatListControllerImpl {
}
)
tooltipScreen.tag = "no_auto_dismiss"
weak var tooltipScreenValue: UndoOverlayController? = tooltipScreen
let tooltipScreenValue: UndoOverlayController? = tooltipScreen
self.currentTooltipUpdateTimer?.invalidate()
self.currentTooltipUpdateTimer = Foundation.Timer.scheduledTimer(withTimeInterval: 0.5, repeats: true, block: { [weak self] _ in
self.currentTooltipUpdateTimer = Foundation.Timer.scheduledTimer(withTimeInterval: 0.5, repeats: true, block: { [weak self, weak tooltipScreenValue] _ in
guard let self else {
return
}