mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-04-09 08:21:27 -04:00
opt: don't skip frame when grab client
This commit is contained in:
parent
933638d1b8
commit
1158fb2e3c
1 changed files with 1 additions and 1 deletions
|
|
@ -4506,7 +4506,7 @@ void rendermon(struct wl_listener *listener, void *data) {
|
||||||
need_more_frames = client_draw_frame(c) || need_more_frames;
|
need_more_frames = client_draw_frame(c) || need_more_frames;
|
||||||
if (!animations && !(allow_tearing && frame_allow_tearing) &&
|
if (!animations && !(allow_tearing && frame_allow_tearing) &&
|
||||||
c->configure_serial && client_is_rendered_on_mon(c, m) &&
|
c->configure_serial && client_is_rendered_on_mon(c, m) &&
|
||||||
!client_is_stopped(c)) {
|
!client_is_stopped(c) && !grabc) {
|
||||||
monitor_check_skip_frame_timeout(m);
|
monitor_check_skip_frame_timeout(m);
|
||||||
goto skip;
|
goto skip;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue