From 51a14b64d86a97694272979c1c952930d35c96df Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 13 Nov 2018 18:13:56 -0200 Subject: Add active collection to stats bar Only show the collection name when in object mode. It is not relevant in any other mode. --- source/blender/editors/space_info/info_stats.c | 5 +++++ 1 file changed, 5 insertions(+) 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); } -- cgit v1.2.3