diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-29 10:54:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 10:54:22 -0400 |
commit | 86b8d036d41f20d6c5e4bf4cb686e917701c72b6 (patch) | |
tree | 5aa498b0d4ec3a215a3ea70f082e6ab1d9f361f2 /sway/tree | |
parent | 3482eebaca090bff110199d5e00e59b4be376ff8 (diff) | |
parent | 6f4cb2b29d5a708d58a88c40ed6cc01bf471a8f0 (diff) |
Merge pull request #2069 from RyanDwyer/ipc-workspace-representation
Add tree representation to IPC workspace description
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/container.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 59137d88..33d88d7f 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -842,7 +842,7 @@ static size_t get_tree_representation(struct sway_container *parent, char *buffe } void container_notify_subtree_changed(struct sway_container *container) { - if (!container || container->type != C_CONTAINER) { + if (!container || container->type < C_WORKSPACE) { return; } free(container->formatted_title); @@ -856,9 +856,11 @@ void container_notify_subtree_changed(struct sway_container *container) { get_tree_representation(container, buffer); container->formatted_title = buffer; - container_calculate_title_height(container); - container_update_title_textures(container); - container_notify_subtree_changed(container->parent); + if (container->type != C_WORKSPACE) { + container_calculate_title_height(container); + container_update_title_textures(container); + container_notify_subtree_changed(container->parent); + } } size_t container_titlebar_height() { |