only unredirect clients during comp update after 3 failures

tfw your conditional is backwards
devs/bu5hm4n/debug_code
Mike Blumenkrantz 6 years ago
parent 07d4f3bcf6
commit 44693a1852
  1. 2
      src/bin/e_comp.c

@ -317,7 +317,7 @@ _e_comp_client_update(E_Client *ec)
{
WRN("FAIL %p", ec);
e_comp_object_redirected_set(ec->frame, 0);
if (e_pixmap_failures_get(ec->pixmap) < 3)
if (e_pixmap_failures_get(ec->pixmap) > 3)
e_comp_object_render_update_add(ec->frame);
}
}

Loading…
Cancel
Save