From 19dbc73968a6acd12ec82ea16ee7b67ec92f8eaf Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Sat, 12 Aug 2023 11:55:25 -0400 Subject: [PATCH] Fixed keyboard navigation --- box.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/box.go b/box.go index df3ea01..e364aac 100644 --- a/box.go +++ b/box.go @@ -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) }