From f8adc288ec39fcd2f1855e337bb021a6760f6842 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 9 Dec 2023 17:38:15 +0100 Subject: [PATCH] fixed handling clickable pointer-style global animations in request dialogs --- src/tools.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tools.c b/src/tools.c index 8d184447..3f551d63 100644 --- a/src/tools.c +++ b/src/tools.c @@ -4608,11 +4608,12 @@ static int RequestHandleEvents(unsigned int req_state, int draw_buffer_game) break; default: - // only check clickable animations if no request gadget clicked - HandleGlobalAnimClicks(mx, my, button_status, FALSE); break; } + // only needed to handle clickable pointer animations here + HandleGlobalAnimClicks(mx, my, button_status, FALSE); + break; } -- 2.34.1