From 06f04eea623cadfca5a5b356b7789495ec736a6b Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Fri, 5 Sep 2025 21:16:38 +0800 Subject: [PATCH] fix: none type open animaiton miss move animaiton --- src/animation/client.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/animation/client.h b/src/animation/client.h index 74538bb..77aad53 100644 --- a/src/animation/client.h +++ b/src/animation/client.h @@ -753,6 +753,8 @@ void client_set_pending_state(Client *c) { (!c->animation_type_open && strcmp(animation_type_open, "none") == 0)) && c->animation.action == OPEN) { + c->animation.action = MOVE; + c->is_pending_open_animation = false; c->animation.should_animate = false; }