From 5270cabc312a49f490cb26525865cf2a2e9abf59 Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Fri, 5 Sep 2025 14:26:40 +0800 Subject: [PATCH] fix: miss re-arrange after restore minimized window --- src/dispatch/bind_define.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dispatch/bind_define.h b/src/dispatch/bind_define.h index 8248288..1990c8e 100644 --- a/src/dispatch/bind_define.h +++ b/src/dispatch/bind_define.h @@ -406,7 +406,8 @@ void restore_minimized(const Arg *arg) { c->is_in_scratchpad = 0; c->isnamedscratchpad = 0; setborder_color(c); - break; + arrange(c->mon, false); + return; } } }