diff options
author | Reto Brunner <reto@labrat.space> | 2020-01-26 12:43:46 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-01-28 10:36:01 -0500 |
commit | ea0df7bee433fedae5716906ea56141f92b9ce53 (patch) | |
tree | e4cee0f53401d0774758437bf4052973bd091e1f /widgets/account.go | |
parent | 2a3d120d6f138918ba8e62f04db78c327cb3ec18 (diff) | |
download | aerc-ea0df7bee433fedae5716906ea56141f92b9ce53.tar.gz |
dirlist: adapt to dynamic UIconfig
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/account.go b/widgets/account.go index 455c28ec..f8b6581f 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -65,7 +65,7 @@ func NewAccountView(aerc *Aerc, conf *config.AercConfig, acct *config.AccountCon } } - dirlist := NewDirectoryList(acct, &acctUiConf, logger, worker) + dirlist := NewDirectoryList(conf, acct, logger, worker) if acctUiConf.SidebarWidth > 0 { grid.AddChild(ui.NewBordered(dirlist, ui.BORDER_RIGHT)) } |