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 /lib/ui/invalidatable.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 'lib/ui/invalidatable.go')
-rw-r--r-- | lib/ui/invalidatable.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/ui/invalidatable.go b/lib/ui/invalidatable.go deleted file mode 100644 index fc354bde..00000000 --- a/lib/ui/invalidatable.go +++ /dev/null @@ -1,17 +0,0 @@ -package ui - -import ( - "sync/atomic" -) - -type Invalidatable struct { - onInvalidate atomic.Value -} - -func (i *Invalidatable) OnInvalidate(f func(d Drawable)) { - i.onInvalidate.Store(f) -} - -func (i *Invalidatable) DoInvalidate(d Drawable) { - atomic.StoreInt32(&dirty, DIRTY) -} |