commit 435509c87155e6c76acbbc5e689f7e1d97e8482f
parent 31a7119c3db722b2cea41bafa9e7b9cc37c9ba5e
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 18 Jul 2016 07:38:35 -0400
Merge pull request #767 from thejan2009/correct-container-titles
Construct titles of nested tabbed/stacked containers from app_id inst…
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/border.c b/sway/border.c
@@ -234,7 +234,7 @@ static char *generate_container_title(swayc_t *container) {
for (i = 0; i < container->children->length; ++i) {
prev_name = name;
swayc_t* child = container->children->items[i];
- const char *title = child->name;
+ const char *title = child->app_id;
if (child->type == C_CONTAINER) {
title = generate_container_title(child);
}