diff options
author | Paul Spooren <mail@aparcar.org> | 2019-08-29 15:30:35 -1000 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-08-30 10:32:28 +0900 |
commit | e4104a867401e383ef2b45f4c449b8b3fa25e69b (patch) | |
tree | 74a0ec139b3630e1f9963122d3ffa2809aaf0616 /widgets/dirlist.go | |
parent | f13f9a86849ff8b4616aa7b462ed171833e02a95 (diff) | |
download | aerc-e4104a867401e383ef2b45f4c449b8b3fa25e69b.tar.gz |
Allow custom spinner via config file
Allows to set `ui.spinner=` to a string which is then split by
`ui.spinner-delimiter=` (Default: comma) instead of having a hard coded
animation.
This implementation doesn't use INIs capabilities to split strings as
it trims whitespaces breaking the default animation.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'widgets/dirlist.go')
-rw-r--r-- | widgets/dirlist.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/dirlist.go b/widgets/dirlist.go index 6214c8e1..33119dd2 100644 --- a/widgets/dirlist.go +++ b/widgets/dirlist.go @@ -33,7 +33,7 @@ func NewDirectoryList(acctConf *config.AccountConfig, uiConf *config.UIConfig, acctConf: acctConf, uiConf: uiConf, logger: logger, - spinner: NewSpinner(), + spinner: NewSpinner(uiConf), store: lib.NewDirStore(), worker: worker, } |