diff options
author | Kevin Kuehler <keur@xcf.berkeley.edu> | 2019-10-28 12:07:07 -0700 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-10-29 11:07:55 -0400 |
commit | 8bc3ccb9017b04aafccafa294f219ced5b41a372 (patch) | |
tree | 73abb7b026bf955582ca3e9c8f84c8b3c858258b /widgets | |
parent | 37f33ad65bfbfa69e620fcb0fdcff6393a251ac7 (diff) |
Add manual threading to the pipeline
Signed-off-by: Kevin Kuehler <keur@xcf.berkeley.edu>
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/account.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/account.go b/widgets/account.go index ebc321d..d3f94cc 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -239,6 +239,10 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { if store, ok := acct.dirlist.SelectedMsgStore(); ok { store.Update(msg) } + case *types.NativeThreadSupport: + if store, ok := acct.dirlist.SelectedMsgStore(); ok { + store.Update(msg) + } case *types.DirectoryThreaded: if store, ok := acct.dirlist.SelectedMsgStore(); ok { store.Update(msg) |