Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-08-14 12:39:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-14 12:39:13 +0400
commit2187f6772cca6452355bbcf3f11602a7a09644fa (patch)
tree2b3d2494099a17b002fa40f0284be6befc16eeca /source/blender/editors/space_outliner/outliner_select.c
parent0b23d378fbac8e76d4885c3485a4dbf158aab136 (diff)
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)
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_select.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index c571fa1de6c..620a936a944 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -660,8 +660,8 @@ int tree_element_active(bContext *C, Scene *scene, SpaceOops *soops, TreeElement
{
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: