From 9d882031014abdd6daafe3a1235cd263edbc58fc Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 9 Jan 2014 23:51:24 +0600 Subject: [PATCH] Code cleanup: no need to check display list elements in texture space match --- source/blender/editors/curve/editcurve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index c132a1a17b6..6d234598bf6 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -6910,7 +6910,7 @@ static int match_texture_space_exec(bContext *C, wmOperator *UNUSED(op)) float min[3], max[3], size[3], loc[3]; int a; - if (ELEM(NULL, object->curve_cache, object->curve_cache->disp.first)) { + if (object->curve_cache == NULL) { BKE_displist_make_curveTypes(scene, object, FALSE); }