[Bf-blender-cvs] [51a14b64d86] blender2.8: Add active collection to stats bar

Dalai Felinto noreply at git.blender.org
Tue Nov 13 22:09:10 CET 2018


Commit: 51a14b64d86a97694272979c1c952930d35c96df
Author: Dalai Felinto
Date:   Tue Nov 13 18:13:56 2018 -0200
Branches: blender2.8
https://developer.blender.org/rB51a14b64d86a97694272979c1c952930d35c96df

Add active collection to stats bar

Only show the collection name when in object mode.
It is not relevant in any other mode.

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

M	source/blender/editors/space_info/info_stats.c

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

diff --git a/source/blender/editors/space_info/info_stats.c b/source/blender/editors/space_info/info_stats.c
index 2bdb21633d9..a6e94e0875d 100644
--- a/source/blender/editors/space_info/info_stats.c
+++ b/source/blender/editors/space_info/info_stats.c
@@ -431,6 +431,7 @@ static void stats_string(ViewLayer *view_layer)
 #define MAX_INFO_MEM_LEN  64
 	SceneStats *stats = view_layer->stats;
 	SceneStatsFmt stats_fmt;
+	LayerCollection *layer_collection = view_layer->active_collection;
 	Object *ob = OBACT(view_layer);
 	Object *obedit = OBEDIT_FROM_OBACT(ob);
 	eObjectMode object_mode = ob ? ob->mode : OB_MODE_OBJECT;
@@ -503,6 +504,10 @@ static void stats_string(ViewLayer *view_layer)
 	s = stats->infostr;
 	ofs = 0;
 
+	if (object_mode == OB_MODE_OBJECT) {
+		ofs += BLI_snprintf(s + ofs, MAX_INFO_LEN - ofs, "%s | ", BKE_collection_ui_name_get(layer_collection->collection));
+	}
+
 	if (ob) {
 		ofs += BLI_snprintf(s + ofs, MAX_INFO_LEN - ofs, "%s | ", ob->id.name + 2);
 	}



More information about the Bf-blender-cvs mailing list