diff options
author | emersion <contact@emersion.fr> | 2018-07-25 16:24:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 16:24:15 +0100 |
commit | 6a8d1e5044086a8dce121bd1f405b342e17a1301 (patch) | |
tree | 18aa3e845dbe44b0bbe245063af591b940126970 /sway/tree | |
parent | 53dbe2da4bd2563ec69211d0c51fb347109fc70d (diff) | |
parent | 445a09575ceffbb05b9045ecd0ce89a6c2e173dc (diff) |
Merge pull request #2358 from CedricCabessa/fix-2355-move-workspace-crashes
fix #2355: "move workspace to output up" crashes
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/container.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index b56b4e87..237e1a35 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -68,7 +68,9 @@ void container_create_notify(struct sway_container *container) { } static void container_update_textures_recursive(struct sway_container *con) { - container_update_title_textures(con); + if (con->type == C_CONTAINER || con->type == C_VIEW) { + container_update_title_textures(con); + } if (con->type == C_VIEW) { view_update_marks_textures(con->sway_view); |