[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39386] trunk/blender/source/blender/ editors/space_outliner/outliner_select.c: patch [#28246] Fix for [#28240]: selecting more than one object in the outliner with "shift left mouse" doesn't work anymore

Campbell Barton ideasman42 at gmail.com
Sun Aug 14 10:39:14 CEST 2011


Revision: 39386
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39386
Author:   campbellbarton
Date:     2011-08-14 08:39:13 +0000 (Sun, 14 Aug 2011)
Log Message:
-----------
patch [#28246] Fix for [#28240]: selecting more than one object in the outliner with "shift left mouse" doesn't work anymore
from Alex Fraser (z0r)

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_outliner/outliner_select.c

Modified: trunk/blender/source/blender/editors/space_outliner/outliner_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_outliner/outliner_select.c	2011-08-14 06:43:58 UTC (rev 39385)
+++ trunk/blender/source/blender/editors/space_outliner/outliner_select.c	2011-08-14 08:39:13 UTC (rev 39386)
@@ -660,8 +660,8 @@
 {
 
 	switch(te->idcode) {
-		case ID_OB:
-			return tree_element_set_active_object(C, scene, soops, te, set);
+		/* Note: no ID_OB: objects are handled specially to allow multiple
+		   selection. See do_outliner_item_activate. */
 		case ID_MA:
 			return tree_element_active_material(C, scene, soops, te, set);
 		case ID_WO:




More information about the Bf-blender-cvs mailing list