HandleTime

This commit is contained in:
2025-09-08 18:40:10 -05:00
parent f571b13a31
commit 31161d7b99
10 changed files with 53 additions and 15 deletions

View File

@@ -116,7 +116,12 @@ func (w *Alert) HandleKey(ev *tcell.EventKey) bool {
}
return w.keyMap.Handle(ev)
}
func (w *Alert) HandleTime(ev *tcell.EventTime) {}
func (w *Alert) HandleTime(ev *tcell.EventTime) {
w.layout.HandleTime(ev)
w.btnLayout.HandleTime(ev)
}
func (w *Alert) Draw(screen tcell.Screen) {
if !w.visible {
return