diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-18 20:42:12 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-18 20:42:12 +1000 |
commit | 1c89f32533534f6e78c81c95578f40df45bb9016 (patch) | |
tree | 98ba154e1cbd5148e9b7178037c26a3dadcec839 /sway/tree/container.c | |
parent | 645bf446fab8db581b04babb1a34aa3c40428058 (diff) |
Preserve buffers during transactions
* Also fix parts of the rendering where it was rendering the pending
state instead of current.
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index f8620b72..b071f394 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -766,9 +766,6 @@ static void update_title_texture(struct sway_container *con, "Unexpected type %s", container_type_to_str(con->type))) { return; } - if (!con->width) { - return; - } struct sway_container *output = container_parent(con, C_OUTPUT); if (!output) { return; |