Fixed keyboard navigation
This commit is contained in:
parent
2de079d063
commit
19dbc73968
4
box.go
4
box.go
@ -359,9 +359,9 @@ func (this *box) handleKeyUp (key input.Key, numberPad bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *box) propagate (callback func (anyBox) bool) 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 {
|
func (this *box) propagateAlt (callback func (anyBox) bool) bool {
|
||||||
return callback(this)
|
return callback(this.outer)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user