Fixed keyboard navigation

This commit is contained in:
Sasha Koshka 2023-08-12 11:55:25 -04:00
parent 2de079d063
commit 19dbc73968

4
box.go
View File

@ -359,9 +359,9 @@ func (this *box) handleKeyUp (key input.Key, numberPad bool) {
}
func (this *box) propagate (callback func (anyBox) bool) bool {
return callback(this)
return callback(this.outer)
}
func (this *box) propagateAlt (callback func (anyBox) bool) bool {
return callback(this)
return callback(this.outer)
}