From 18889909345f62f2a12e7832d6faba05954e16e6 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Thu, 19 Sep 2019 11:23:57 +0200 Subject: Cleanup: Remove redundant name checking The BKE function already does this checking. --- source/blender/editors/gpencil/gpencil_data.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'source/blender/editors/gpencil/gpencil_data.c') diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c index 7753635a24c..a072b6c4cf9 100644 --- a/source/blender/editors/gpencil/gpencil_data.c +++ b/source/blender/editors/gpencil/gpencil_data.c @@ -505,12 +505,6 @@ static int gp_layer_duplicate_object_exec(bContext *C, wmOperator *op) /* Create new layer. */ bGPDlayer *gpl_dst = BKE_gpencil_layer_addnew(gpd_dst, gpl_src->info, true); - BLI_uniquename(&gpd_dst->layers, - gpl_dst, - DATA_("GP_Layer"), - '.', - offsetof(bGPDlayer, info), - sizeof(gpl_dst->info)); /* Need to copy some variables (not all). */ gpl_dst->onion_flag = gpl_src->onion_flag; gpl_dst->thickness = gpl_src->thickness; -- cgit v1.2.3