diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-06-11 20:04:21 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-06-11 20:04:21 -0400 |
commit | 6728a11fdf863f7a33eb14e84421b828ab28c09f (patch) | |
tree | c9e1dcb85e34273b3f166f50a84e608aafe4e502 /widgets/aerc.go | |
parent | d67c8a60ef9a326ba7e2ff0b5755d8eba629d4eb (diff) | |
download | aerc-6728a11fdf863f7a33eb14e84421b828ab28c09f.tar.gz |
Apply gofmt
Diffstat (limited to 'widgets/aerc.go')
-rw-r--r-- | widgets/aerc.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/widgets/aerc.go b/widgets/aerc.go index 798a4dd..cc93d92 100644 --- a/widgets/aerc.go +++ b/widgets/aerc.go @@ -69,10 +69,10 @@ func NewAerc(logger *log.Logger) *Aerc { })() return &Aerc{ - grid: mainGrid, - statusbar: statusbar, - statusline: statusline, - tabs: tabs, + grid: mainGrid, + statusbar: statusbar, + statusline: statusline, + tabs: tabs, } } @@ -94,7 +94,7 @@ func (aerc *Aerc) Event(event tcell.Event) bool { if event.Rune() == ':' { exline := NewExLine(func(command string) { aerc.statusline.Push(fmt.Sprintf("TODO: execute %s", command), - 3 * time.Second) + 3*time.Second) aerc.statusbar.Pop() aerc.interactive = nil }, func() { |