aboutsummaryrefslogtreecommitdiff
path: root/sway/handlers.c
diff options
context:
space:
mode:
authorD.B <thejan.2009@gmail.com>2016-07-16 15:11:08 +0200
committerD.B <thejan.2009@gmail.com>2016-07-16 15:34:43 +0200
commitad7605675ef5d1fc99653e80c3c846429abfda25 (patch)
tree001033de86cb34fca09837a643a0818f299cdf3e /sway/handlers.c
parent7aeedf0264e1745f2993a430a9cfef46a31e75ca (diff)
refactor swayc_tabbed_stacked_parent into _ancestor and _parent and use where needed
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index a7a87564..1b96be0a 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -523,8 +523,9 @@ static void handle_view_properties_updated(wlc_handle view, uint32_t mask) {
if (!c->name || strcmp(c->name, new_name) != 0) {
free(c->name);
c->name = strdup(new_name);
- swayc_t *p = swayc_tabbed_stacked_parent(c);
+ swayc_t *p = swayc_tabbed_stacked_ancestor(c);
if (p) {
+ // TODO: we only got the topmost tabbed/stacked container, update borders of all containers on the path
update_view_border(get_focused_view(p));
} else if (c->border_type == B_NORMAL) {
update_view_border(c);