From 6a08dc117e4021257f26d479d3a8dcd8080d6cfd Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Tue, 25 Mar 2025 15:59:05 +0800 Subject: [PATCH] fix: flash when tagin due to only current mon frame event trigger flush --- maomao.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/maomao.c b/maomao.c index 0341e766..b4c35cbf 100644 --- a/maomao.c +++ b/maomao.c @@ -4267,12 +4267,10 @@ void rendermon(struct wl_listener *listener, void *data) { // Draw frames for all clients wl_list_for_each(c, &clients, link) { - if(c->mon != m) continue; need_more_frames = client_draw_frame(c) || need_more_frames; } wl_list_for_each_safe(c, tmp, &fadeout_clients, fadeout_link) { - if(c->mon != m) continue; need_more_frames = client_draw_fadeout_frame(c) || need_more_frames; }