From a93b4de6f3c362d6e0db0b1f6d3f2e1c9a5cd64d Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Wed, 11 Sep 2019 21:01:05 +0200 Subject: Add modify-labels command This adds the event type as well as the command implementation, but no backend supports it yet. --- widgets/spinner.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'widgets') diff --git a/widgets/spinner.go b/widgets/spinner.go index be95d39..51b8c1b 100644 --- a/widgets/spinner.go +++ b/widgets/spinner.go @@ -1,9 +1,9 @@ package widgets import ( + "strings" "sync/atomic" "time" - "strings" "github.com/gdamore/tcell" @@ -13,9 +13,9 @@ import ( type Spinner struct { ui.Invalidatable - frame int64 // access via atomic + frame int64 // access via atomic frames []string - stop chan struct{} + stop chan struct{} } func NewSpinner(uiConf *config.UIConfig) *Spinner { -- cgit v1.2.3