From 664cfe4c5a6212bd75bbc9daae6cba3b29245c43 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Sun, 5 Sep 2021 23:21:05 -0700 Subject: [PATCH] Randomly animated brushes didn't get their icon Mended --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 95ec2940e..e42ad83a6 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -8846,7 +8846,7 @@ static void draw_brushes(void) dest.y = ui_btn_y + button_h - img_brush_dir->h; SDL_BlitSurface(img_brush_dir, NULL, screen, &dest); } - if (brushes_frames[brush] > 1) + if (brushes_frames[brush] != 1) { dest.x = ui_btn_x; dest.y = ui_btn_y + button_h - img_brush_anim->h;