diff options
Diffstat (limited to 'commands/account/recover.go')
-rw-r--r-- | commands/account/recover.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/commands/account/recover.go b/commands/account/recover.go index cef0720f..cccadf8d 100644 --- a/commands/account/recover.go +++ b/commands/account/recover.go @@ -8,7 +8,6 @@ import ( "path/filepath" "git.sr.ht/~rjarry/aerc/commands" - "git.sr.ht/~rjarry/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/log" "git.sr.ht/~rjarry/aerc/widgets" "git.sr.ht/~sircmpwn/getopt" @@ -107,11 +106,7 @@ func (Recover) Execute(aerc *widgets.Aerc, args []string) error { return err } - tab := aerc.NewTab(composer, "Recovered") - composer.OnHeaderChange("Subject", func(subject string) { - tab.Name = subject - ui.Invalidate() - }) + composer.Tab = aerc.NewTab(composer, "Recovered") go func() { defer log.PanicHandler() |