From d89a9ba5381e625d4e993d9ee5a69b9010b43180 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Thu, 25 Apr 2019 19:06:11 +0200 Subject: [PATCH] fixed bug with restarting pointer-style global animations when moving mouse --- src/anim.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/anim.c b/src/anim.c index 3b96adfa..e603a9d3 100644 --- a/src/anim.c +++ b/src/anim.c @@ -933,7 +933,8 @@ static boolean SetGlobalAnimPart_Viewport(struct GlobalAnimPartControlInfo *part part->viewport_width = viewport_width; part->viewport_height = viewport_height; - changed = TRUE; + if (part->control_info.class != get_hash_from_key("pointer")) + changed = TRUE; } return changed; -- 2.34.1