diff options
author | Jeffas <dev@jeffas.io> | 2019-10-02 11:24:12 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-10-09 19:46:43 -0400 |
commit | 1339faf7881f33762c6e0a4915404e362fc51de1 (patch) | |
tree | e8ffd3d7827a9753c2290869839e77bbe50aa6d3 /widgets | |
parent | 00b9ca503286d5dc43def31db713e853c8aeee13 (diff) | |
download | aerc-1339faf7881f33762c6e0a4915404e362fc51de1.tar.gz |
Show spinner when fetching contents
The spinner should be shown when fetching the contents as we don't know
at that point whether there are some messages or not.
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/msglist.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/msglist.go b/widgets/msglist.go index 5c2d2f44..729b65f5 100644 --- a/widgets/msglist.go +++ b/widgets/msglist.go @@ -61,6 +61,9 @@ func (ml *MessageList) Draw(ctx *ui.Context) { ml.drawEmptyMessage(ctx) return } + } else if store.FetchingContents { + ml.spinner.Draw(ctx) + return } var ( |