From 898231fdbcc34785fefa2030bf9c17dbdedfb63f Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Wed, 18 Nov 2020 11:51:14 -0300 Subject: [PATCH] Fix transform redo panel showing only the first custom orientation The error was introduced in rBf470a02afaea, but the problem is in `ED_transform_calc_orientation_from_type_ex` --- source/blender/editors/transform/transform_orientations.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index 69dfc4a7ad4..b353dba9e54 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -572,7 +572,7 @@ short ED_transform_calc_orientation_from_type_ex(const bContext *C, TransformOrientation *custom_orientation = BKE_scene_transform_orientation_find( scene, orientation_index_custom); applyTransformOrientation(custom_orientation, r_mat, NULL); - break; + return V3D_ORIENT_CUSTOM + orientation_index_custom; } }