summary refs log tree commit diff stats
ModeNameSize
-rw-r--r--.gitignore51log stats plain blame
-rw-r--r--LICENSE1061log stats plain blame
-rw-r--r--Makefile1616log stats plain blame
-rw-r--r--README.md741log stats plain blame
-rw-r--r--aerc.go2364log stats plain blame
d---------commands531log stats plain
d---------config239log stats plain
d---------contrib103log stats plain
d---------doc216log stats plain
-rw-r--r--go.mod1550log stats plain blame
-rw-r--r--go.sum9086log stats plain blame
d---------lib184log stats plain
d---------widgets507log stats plain
d---------worker100log stats plain
span class="p">} func (i *Invalidatable) OnInvalidate(f func(d Drawable)) { i.onInvalidate.Store(f) } func (i *Invalidatable) DoInvalidate(d Drawable) { v := i.onInvalidate.Load() if v == nil { return } f := v.(func(d Drawable)) if f != nil { f(d) } }