aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorJeffas <dev@jeffas.io>2019-07-23 19:41:15 +0100
committerDrew DeVault <sir@cmpwn.com>2019-07-25 18:12:08 -0400
commitee5b537d538baf38450a2ae655dee53a49aa9824 (patch)
treef1b60a518f870198f7a9477f80816f23b8ab588a /commands
parent454151922558f2e82cc7f7d935d74940afa0107b (diff)
Fix :close on terminal panic
Executing :close on a terminal would panic due to it already having been removed. This is also related to the fact that removing a tab doesn't check for whether it actually found a tab to remove or not.
Diffstat (limited to 'commands')
-rw-r--r--commands/terminal/close.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/commands/terminal/close.go b/commands/terminal/close.go
index 35c4799..8256e67 100644
--- a/commands/terminal/close.go
+++ b/commands/terminal/close.go
@@ -26,6 +26,5 @@ func (_ Close) Execute(aerc *widgets.Aerc, args []string) error {
}
term, _ := aerc.SelectedTab().(*widgets.Terminal)
term.Close(nil)
- aerc.RemoveTab(term)
return nil
}