mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-03-29 07:58:21 -04:00
opt: don't skip frame when grab client
This commit is contained in:
parent
adfedc34cf
commit
79b4e30f67
1 changed files with 1 additions and 1 deletions
|
|
@ -4443,7 +4443,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