diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-10-09 19:57:53 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-10-09 19:57:53 -0400 |
commit | f1b365dfc30b7253f3baea270ebcc8d1fb754db9 (patch) | |
tree | 4dc2e2aacf4c1d160544808aba8e02d0cad4939a | |
parent | d3379dd7f0d2e5caffeda4a97fc72649421cccca (diff) | |
download | aerc-f1b365dfc30b7253f3baea270ebcc8d1fb754db9.tar.gz |
Revert "Show spinner when fetching contents"
This reverts commit 1339faf7881f33762c6e0a4915404e362fc51de1.
-rw-r--r-- | lib/msgstore.go | 9 | ||||
-rw-r--r-- | widgets/msglist.go | 3 |
2 files changed, 3 insertions, 9 deletions
diff --git a/lib/msgstore.go b/lib/msgstore.go index 68e20d5..071a504 100644 --- a/lib/msgstore.go +++ b/lib/msgstore.go @@ -11,10 +11,9 @@ import ( // Accesses to fields must be guarded by MessageStore.Lock/Unlock type MessageStore struct { - Deleted map[uint32]interface{} - DirInfo models.DirectoryInfo - Messages map[uint32]*models.MessageInfo - FetchingContents bool + Deleted map[uint32]interface{} + DirInfo models.DirectoryInfo + Messages map[uint32]*models.MessageInfo // Ordered list of known UIDs uids []uint32 @@ -161,7 +160,6 @@ func (store *MessageStore) Update(msg types.WorkerMessage) { store.worker.PostAction(&types.FetchDirectoryContents{ SortCriteria: store.defaultSortCriteria, }, nil) - store.FetchingContents = true update = true case *types.DirectoryContents: newMap := make(map[uint32]*models.MessageInfo) @@ -175,7 +173,6 @@ func (store *MessageStore) Update(msg types.WorkerMessage) { } store.Messages = newMap store.uids = msg.Uids - store.FetchingContents = false update = true case *types.MessageInfo: if existing, ok := store.Messages[msg.Info.Uid]; ok && existing != nil { diff --git a/widgets/msglist.go b/widgets/msglist.go index 729b65f..5c2d2f4 100644 --- a/widgets/msglist.go +++ b/widgets/msglist.go @@ -61,9 +61,6 @@ func (ml *MessageList) Draw(ctx *ui.Context) { ml.drawEmptyMessage(ctx) return } - } else if store.FetchingContents { - ml.spinner.Draw(ctx) - return } var ( |