From f8b257a85d36e51ebd713e8a39ebe5759a0fcd8b Mon Sep 17 00:00:00 2001 From: Brendan Bosman Date: Fri, 10 Mar 2023 12:01:35 +0200 Subject: [PATCH] wip --- flex.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flex.go b/flex.go index 469a0e3..8b1cf0d 100644 --- a/flex.go +++ b/flex.go @@ -49,7 +49,7 @@ type Flex struct { // background before any items are drawn, set it to a box with the desired // color: // -// flex.Box = NewBox() +// flex.Box = NewBox() func NewFlex() *Flex { f := &Flex{ direction: FlexColumn, @@ -237,7 +237,6 @@ func (f *Flex) MouseHandler() func(action MouseAction, event *tcell.EventMouse, return } } - return }) }