edje - improve number of signlas/messages we can do per second

use a 0 timer delay not 0.001s before processing messages thus being
able to handle more especially when they self-feed a bit.

@opt
This commit is contained in:
Carsten Haitzler 2022-02-20 11:20:43 +00:00
parent d3b8f40ff0
commit d3a1b077fb
1 changed files with 1 additions and 1 deletions

View File

@ -511,7 +511,7 @@ _edje_message_propagate_send(Edje *ed, Edje_Queue queue, Edje_Message_Type type,
if (_injob > 0)
{
if (!_job_loss_timer)
_job_loss_timer = ecore_timer_add(0.001, _edje_job_loss_timer, NULL);
_job_loss_timer = ecore_timer_add(0.000, _edje_job_loss_timer, NULL);
}
else
{