From b5bb59d19abf48583f04448c0dd5fee5befa3724 Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Wed, 1 Apr 2026 13:28:21 -0400 Subject: fish: Fix alternating animation during April Fools During April Fools in the morning, Wanda the fish is expected to show up upside down, with dirty-looking water, as though dead. However, because of the hour comparison, it ends up alternating between the standard animation and the dead fish. --- applets/fish/fish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/fish/fish.c b/applets/fish/fish.c index d70d250a..a72ff5e4 100644 --- a/applets/fish/fish.c +++ b/applets/fish/fish.c @@ -1181,7 +1181,7 @@ static void check_april_fools(FishApplet* fish) } else if (tm->tm_mon == fools_month && tm->tm_mday == fools_day && tm->tm_hour >= fools_hour_start && - tm->tm_hour <= fools_hour_end) { + tm->tm_hour < fools_hour_end) { fish->april_fools = TRUE; update_pixmap (fish); } -- cgit v1.2.1