From ca39aff59d45e15297a25895f6963e134894aad4 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Fri, 10 Sep 2021 14:43:48 +0200 Subject: Cleanup: Fix comment in recent commit. A task is created for each item in a list base. It used to say that a thread was created for each item. --- source/blender/editors/animation/keyframes_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/animation/keyframes_draw.c') diff --git a/source/blender/editors/animation/keyframes_draw.c b/source/blender/editors/animation/keyframes_draw.c index d9a22c47242..ac7db9f4f46 100644 --- a/source/blender/editors/animation/keyframes_draw.c +++ b/source/blender/editors/animation/keyframes_draw.c @@ -519,7 +519,7 @@ static void ED_keylist_draw_list_build_keylists(AnimKeylistDrawList *draw_list) { TaskParallelSettings settings; BLI_parallel_range_settings_defaults(&settings); - /* Create a thread per item, a single item is complex enough to deserve its own thread. */ + /* Create a task per item, a single item is complex enough to deserve its own task. */ settings.min_iter_per_thread = 1; BLI_task_parallel_listbase( -- cgit v1.2.3