diff options
author | Robin Jarry <robin@jarry.cc> | 2022-12-20 17:05:43 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-01-04 22:57:31 +0100 |
commit | ae675b491d2b55a06588e8ab4ce8205aaae796c8 (patch) | |
tree | 383920e34344ea3456162fb74cc180bfb33dec83 /commands/msg/reply.go | |
parent | 2a290cf1ed6113f0d01eea3f2cff446339bed0ce (diff) | |
download | aerc-ae675b491d2b55a06588e8ab4ce8205aaae796c8.tar.gz |
templates: change fields as lazy functions
No need to pre-render fields that are not necessarily accessed in
templates. Change fields to functions that are evaluated only when
required.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'commands/msg/reply.go')
-rw-r--r-- | commands/msg/reply.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/msg/reply.go b/commands/msg/reply.go index 795158ca..f8cde644 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -175,7 +175,8 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { mv, _ := aerc.SelectedTabContent().(*widgets.MessageViewer) addTab := func() error { composer, err := widgets.NewComposer(aerc, acct, - acct.AccountConfig(), acct.Worker(), template, h, original) + acct.AccountConfig(), acct.Worker(), template, h, + &original) if err != nil { aerc.PushError("Error: " + err.Error()) return err |