use heavy task by default

This commit is contained in:
lxsang
2018-10-14 20:41:44 +02:00
parent b0bbff1556
commit 487e5b108b
3 changed files with 7 additions and 3 deletions

View File

@ -224,7 +224,7 @@ antd_task_t* antd_create_task(void* (*handle)(void*), void *data, void* (*callba
task->handle = handle;
task->callback = callback_of(callback);
task->priority = NORMAL_PRIORITY;
task->type = LIGHT;
task->type = HEAVY; //LIGHT;
return task;
}