[Bf-blender-cvs] [f9c602f] blender-v2.72-release: Fix T41995: Box selection - Edit mode - Header not updated.

Bastien Montagne noreply at git.blender.org
Fri Oct 3 15:24:26 CEST 2014


Commit: f9c602f1beea6440bb6c49bfa225eab3d012ee4f
Author: Bastien Montagne
Date:   Sun Sep 28 23:47:05 2014 +0200
Branches: blender-v2.72-release
https://developer.blender.org/rBf9c602f1beea6440bb6c49bfa225eab3d012ee4f

Fix T41995: Box selection - Edit mode - Header not updated.

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

M	source/blender/editors/space_view3d/view3d_select.c

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

diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c
index c26ce27..11e7e49 100644
--- a/source/blender/editors/space_view3d/view3d_select.c
+++ b/source/blender/editors/space_view3d/view3d_select.c
@@ -1972,7 +1972,7 @@ static int do_armature_box_select(ViewContext *vc, rcti *rect, bool select, bool
 	
 	ED_armature_sync_selection(arm->edbo);
 	
-	return OPERATOR_CANCELLED;
+	return hits > 0 ? OPERATOR_FINISHED : OPERATOR_CANCELLED;
 }
 
 static int do_object_pose_box_select(bContext *C, ViewContext *vc, rcti *rect, bool select, bool extend)




More information about the Bf-blender-cvs mailing list