~gioverse/chat

7dd8a253558315dd30a339d9685560eb17f01d77 — Jack Mordaunt 1 year, 9 months ago 9068d14
widget: consistent receiver name

Satisfy linter by using a consistent receiver name.

Signed-off-by: Jack Mordaunt <jackmordaunt.dev@gmail.com>
1 files changed, 5 insertions(+), 5 deletions(-)

M widget/image.go
M widget/image.go => widget/image.go +5 -5
@@ 13,8 13,8 @@ type CachedImage struct {
}

// Reload tells the CachedImage to repopulate the cache.
func (ci *CachedImage) Reload() {
	ci.ch = true
func (img *CachedImage) Reload() {
	img.ch = true
}

// Cache the image if it is not already.


@@ 37,7 37,7 @@ func (img CachedImage) Op() paint.ImageOp {

// changed reports whether the underlying image has changed and therefore
// should be cached again.
func (ci *CachedImage) changed() bool {
	defer func() { ci.ch = false }()
	return ci.ch
func (img *CachedImage) changed() bool {
	defer func() { img.ch = false }()
	return img.ch
}