[Bf-blender-cvs] [38b9979] master: Minor code style fix.

Tamito Kajiyama noreply at git.blender.org
Sat May 3 13:39:38 CEST 2014


Commit: 38b997991980558cda1a58e5da68c3c5fe58fddb
Author: Tamito Kajiyama
Date:   Fri May 2 12:33:24 2014 +0900
https://developer.blender.org/rB38b997991980558cda1a58e5da68c3c5fe58fddb

Minor code style fix.

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

M	source/blender/editors/space_outliner/outliner_tree.c

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

diff --git a/source/blender/editors/space_outliner/outliner_tree.c b/source/blender/editors/space_outliner/outliner_tree.c
index 1d5a70a..fa1130c 100644
--- a/source/blender/editors/space_outliner/outliner_tree.c
+++ b/source/blender/editors/space_outliner/outliner_tree.c
@@ -800,7 +800,8 @@ static void outliner_add_id_contents(SpaceOops *soops, TreeElement *te, TreeStor
 				outliner_add_element(soops, &te->subtree, linestyle, te, TSE_ANIM_DATA, 0);
 
 			for (a = 0; a < MAX_MTEX; a++) {
-				if (linestyle->mtex[a]) outliner_add_element(soops, &te->subtree, linestyle->mtex[a]->tex, te, 0, a);
+				if (linestyle->mtex[a])
+					outliner_add_element(soops, &te->subtree, linestyle->mtex[a]->tex, te, 0, a);
 			}
 			break;
 		}




More information about the Bf-blender-cvs mailing list