use heavy task by default

This commit is contained in:
lxsang
2018-10-14 21:48:51 +02:00
parent 61abd03669
commit 133cb58e90
3 changed files with 3 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 = HEAVY; //LIGHT;
task->type = LIGHT;
return task;
}