From 60b17c473a0edbd806c9f0c8e4b3b238cb60227e Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 17 Mar 2019 17:39:22 -0400 Subject: Wrap Terminal in TermHost --- commands/term-close.go | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'commands/term-close.go') diff --git a/commands/term-close.go b/commands/term-close.go index 38fcc27..30f3392 100644 --- a/commands/term-close.go +++ b/commands/term-close.go @@ -3,7 +3,6 @@ package commands import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" "git.sr.ht/~sircmpwn/aerc2/widgets" ) @@ -15,15 +14,10 @@ func TermClose(aerc *widgets.Aerc, args []string) error { if len(args) != 1 { return errors.New("Usage: term-close") } - grid, ok := aerc.SelectedTab().(*ui.Grid) + thost, ok := aerc.SelectedTab().(*widgets.TermHost) if !ok { return errors.New("Error: not a terminal") } - for _, child := range grid.Children() { - if term, ok := child.(*widgets.Terminal); ok { - term.Close(nil) - return nil - } - } - return errors.New("Error: not a terminal") + thost.Terminal().Close(nil) + return nil } -- cgit v1.2.3