Uncomment deselected center point color

This commit is contained in:
Campbell Barton
2017-04-11 15:48:10 +10:00
parent e199eae39d
commit 9d00b7680f

View File

@@ -1071,17 +1071,12 @@ static void DRW_shgroup_object_center(OBJECT_StorageList *stl, Object *ob)
} }
} }
else { else {
#if 0
shgroup = stl->g_data->center_deselected;
if (is_library) { if (is_library) {
shgroup = stl->g_data->center_deselected_lib; shgroup = stl->g_data->center_deselected_lib;
} }
else { else {
shgroup = stl->g_data->center_deselected; shgroup = stl->g_data->center_deselected;
} }
#else
return;
#endif
} }
DRW_shgroup_dynamic_call_add(shgroup, ob->obmat[3]); DRW_shgroup_dynamic_call_add(shgroup, ob->obmat[3]);