diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2022-10-07 11:00:31 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-10-12 22:16:40 +0200 |
commit | ba24e92062f1a9b38065d503fd1dde749c27a56c (patch) | |
tree | d1a2981f8f9bda50a070b50c688388fe2130f770 /widgets/spinner.go | |
parent | 34014d3ceeebe8a9c131213fa56d1977fbc26b4a (diff) | |
download | aerc-ba24e92062f1a9b38065d503fd1dde749c27a56c.tar.gz |
invalidatable: cleanup dead code
Remove invalidatable type and all associated calls. All items can
directly invalidate the UI.
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'widgets/spinner.go')
-rw-r--r-- | widgets/spinner.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/spinner.go b/widgets/spinner.go index 0e7c9005..34c3d82e 100644 --- a/widgets/spinner.go +++ b/widgets/spinner.go @@ -13,7 +13,6 @@ import ( ) type Spinner struct { - ui.Invalidatable frame int64 // access via atomic frames []string stop chan struct{} @@ -82,5 +81,5 @@ func (s *Spinner) Draw(ctx *ui.Context) { } func (s *Spinner) Invalidate() { - s.DoInvalidate(s) + ui.Invalidate() } |