[Bf-blender-cvs] [54f03914b08] blender2.8: Fix identation

Dalai Felinto noreply at git.blender.org
Wed Apr 19 11:17:17 CEST 2017


Commit: 54f03914b0848a1fb80d62ab2bb01bad8631667e
Author: Dalai Felinto
Date:   Wed Apr 19 11:17:06 2017 +0200
Branches: blender2.8
https://developer.blender.org/rB54f03914b0848a1fb80d62ab2bb01bad8631667e

Fix identation

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

M	source/blender/editors/object/object_relations.c

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

diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 3f3c770dbe1..f1a6bca8217 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -1856,7 +1856,7 @@ static void single_obdata_users(Main *bmain, Scene *scene, const int flag)
 static void single_object_action_users(Scene *scene, SceneLayer *sl, const int flag)
 {
 	FOREACH_OBJECT_FLAG(scene, sl, flag, ob)
-	    if (!ID_IS_LINKED_DATABLOCK(ob)) {
+		if (!ID_IS_LINKED_DATABLOCK(ob)) {
 			DAG_id_tag_update(&ob->id, OB_RECALC_DATA);
 			BKE_animdata_copy_id_action(&ob->id, false);
 		}
@@ -1870,7 +1870,7 @@ static void single_mat_users(Main *bmain, Scene *scene, SceneLayer *sl, const in
 	int a, b;
 
 	FOREACH_OBJECT_FLAG(scene, sl, flag, ob)
-	    if (!ID_IS_LINKED_DATABLOCK(ob)) {
+		if (!ID_IS_LINKED_DATABLOCK(ob)) {
 			for (a = 1; a <= ob->totcol; a++) {
 				ma = give_current_material(ob, a);
 				if (ma) {




More information about the Bf-blender-cvs mailing list