diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-16 12:15:34 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-16 12:15:34 -0400 |
commit | 475b697bdfd7a5821282174f14f8d904e47aff4d (patch) | |
tree | 7febf2e25cede5809f1d40c934d379315e06bd64 /widgets/account.go | |
parent | 2b3e123cb86f9b4c5853e31d9e76c2b0d083f90a (diff) | |
download | aerc-475b697bdfd7a5821282174f14f8d904e47aff4d.tar.gz |
Implement (basic form) of :reply
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/widgets/account.go b/widgets/account.go index c252e38..ab32f5d 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -84,6 +84,14 @@ func (acct *AccountView) AccountConfig() *config.AccountConfig { return acct.acct } +func (acct *AccountView) Worker() *types.Worker { + return acct.worker +} + +func (acct *AccountView) Logger() *log.Logger { + return acct.logger +} + func (acct *AccountView) Name() string { return acct.acct.Name } @@ -110,10 +118,6 @@ func (acct *AccountView) Focus(focus bool) { // TODO: Unfocus children I guess } -func (acct *AccountView) Worker() *types.Worker { - return acct.worker -} - func (acct *AccountView) connected(msg types.WorkerMessage) { switch msg := msg.(type) { case *types.Done: |