diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-10 21:23:22 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-10 21:23:22 -0400 |
commit | d394fd1f3b8625c7cc1c1f483f35d5b137a28c7c (patch) | |
tree | 88158be6dc45b9ff507aaccf8b85c04fba9e4bf6 /widgets | |
parent | b60999c39e11bf4d1e236f2b10a2f895b44d23fb (diff) |
Flesh out command parsing & handling
Diffstat (limited to 'widgets')
-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 dc339cb..be1e068 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -115,7 +115,7 @@ func (acct *AccountView) Event(event tcell.Event) bool { err := acct.runCmd(command) if err != nil { acct.statusline.Push( - fmt.Sprintf("Error: %v", err), 3*time.Second). + fmt.Sprintf("Error: %v", err), 10*time.Second). Color(tcell.ColorRed, tcell.ColorDefault) } acct.statusbar.Pop() |