From 72e4b5e2b2e0de50b8572f195f73ccdd8e9d9461 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 11 May 2019 13:20:29 -0400 Subject: Refactor ctx stashing out of exline --- widgets/exline.go | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'widgets') diff --git a/widgets/exline.go b/widgets/exline.go index c841802..a5b896f 100644 --- a/widgets/exline.go +++ b/widgets/exline.go @@ -10,7 +10,6 @@ type ExLine struct { ui.Invalidatable cancel func() commit func(cmd string) - ctx *ui.Context input *ui.TextInput } @@ -32,7 +31,6 @@ func (ex *ExLine) Invalidate() { } func (ex *ExLine) Draw(ctx *ui.Context) { - ex.ctx = ctx // gross ex.input.Draw(ctx) } @@ -45,14 +43,10 @@ func (ex *ExLine) Event(event tcell.Event) bool { case *tcell.EventKey: switch event.Key() { case tcell.KeyEnter: - if ex.ctx != nil { - ex.ctx.HideCursor() - } + ex.input.Focus(false) ex.commit(ex.input.String()) case tcell.KeyEsc, tcell.KeyCtrlC: - if ex.ctx != nil { - ex.ctx.HideCursor() - } + ex.input.Focus(false) ex.cancel() default: return ex.input.Event(event) -- cgit v1.2.3