Add active collection to stats bar

Only show the collection name when in object mode.
It is not relevant in any other mode.
This commit is contained in:
Dalai Felinto 2018-11-13 18:13:56 -02:00
parent 42fbb8af83
commit 51a14b64d8
1 changed files with 5 additions and 0 deletions

View File

@ -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);
}