diff options
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/account.go b/widgets/account.go index bb29ce06..f2795133 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -237,6 +237,8 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { } case *types.CreateDirectory: acct.dirlist.UpdateList(nil) + case *types.RemoveDirectory: + acct.dirlist.UpdateList(nil) } case *types.DirectoryInfo: if store, ok := acct.dirlist.MsgStore(msg.Info.Name); ok { |