From f2c896a9ad171e20dc291b60ed4c96a4e6a9456f Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Mon, 4 Oct 2021 17:08:00 +0200 Subject: GPencil: Simplify code removing extra function The function was not doing anything and only was calling another function. --- source/blender/editors/gpencil/gpencil_paint.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'source/blender/editors/gpencil') diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c index bf49203f915..ffc50a86fc6 100644 --- a/source/blender/editors/gpencil/gpencil_paint.c +++ b/source/blender/editors/gpencil/gpencil_paint.c @@ -281,14 +281,6 @@ static void gpencil_update_cache(bGPdata *gpd) } } -static void gpencil_stroke_added_enable(tGPsdata *p) -{ - BLI_assert(p->gpf->strokes.last != NULL); - - /* drawing batch cache is dirty now */ - gpencil_update_cache(p->gpd); -} - /* ------ */ /* Forward defines for some functions... */ @@ -1322,7 +1314,7 @@ static void gpencil_stroke_newfrombuffer(tGPsdata *p) BKE_gpencil_stroke_copy_to_keyframes(gpd, gpl, p->gpf, gps, tail); } - gpencil_stroke_added_enable(p); + gpencil_update_cache(p->gpd); } /* --- 'Eraser' for 'Paint' Tool ------ */ -- cgit v1.2.3