[Bf-blender-cvs] [df613a52e66] blender2.8: Multi-Objects: CURVE_OT_de_select_last

Habib Gahbiche noreply at git.blender.org
Tue Oct 30 20:57:01 CET 2018


Commit: df613a52e66676e514fa3241533780cdcc636a9a
Author: Habib Gahbiche
Date:   Tue Oct 30 16:17:10 2018 -0300
Branches: blender2.8
https://developer.blender.org/rBdf613a52e66676e514fa3241533780cdcc636a9a

Multi-Objects: CURVE_OT_de_select_last

Reviewers: dfelinto
https://developer.blender.org/D3841

===================================================================

M	source/blender/editors/curve/editcurve_select.c

===================================================================

diff --git a/source/blender/editors/curve/editcurve_select.c b/source/blender/editors/curve/editcurve_select.c
index 0313ded664d..30c9890eb68 100644
--- a/source/blender/editors/curve/editcurve_select.c
+++ b/source/blender/editors/curve/editcurve_select.c
@@ -435,13 +435,19 @@ void CURVE_OT_de_select_first(wmOperatorType *ot)
 
 static int de_select_last_exec(bContext *C, wmOperator *UNUSED(op))
 {
-	Object *obedit = CTX_data_edit_object(C);
+	ViewLayer *view_layer = CTX_data_view_layer(C);
+	uint objects_len = 0;
+	Object **objects = BKE_view_layer_array_from_objects_in_edit_mode_unique_data(view_layer, &objects_len);
 
-	selectend_nurb(obedit, LAST, true, DESELECT);
-	DEG_id_tag_update(obedit->data, DEG_TAG_SELECT_UPDATE);
-	WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data);
-	BKE_curve_nurb_vert_active_validate(obedit->data);
+	for (uint ob_index = 0; ob_index < objects_len; ob_index++) {
+		Object *obedit = objects[ob_index];
+		selectend_nurb(obedit, LAST, true, DESELECT);
+		DEG_id_tag_update(obedit->data, DEG_TAG_SELECT_UPDATE);
+		WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit->data);
+		BKE_curve_nurb_vert_active_validate(obedit->data);
+	}
 
+	MEM_freeN(objects);
 	return OPERATOR_FINISHED;
 }



More information about the Bf-blender-cvs mailing list