Display instance (if present) in nested layouts

This commit is contained in:
Mykyta Holubakha 2017-01-19 03:45:23 +02:00
parent e714fbcbec
commit d443bce6fe
1 changed files with 3 additions and 1 deletions

View File

@ -254,7 +254,9 @@ static char *generate_container_title(swayc_t *container) {
swayc_t* child = container->children->items[i];
const char *title = NULL;
if (child->type == C_VIEW) {
title = child->app_id ? child->app_id : (child->class ? child->class : "(null)");
title = child->app_id ? child->app_id :
(child->instance ? child->instance :
(child->class ? child->class :"(null)"));
} else { //child->type == C_CONTAINER
title = generate_container_title(child);
}