diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-25 09:10:35 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-01 23:14:58 +1000 |
commit | 34f35f0badc767d9b0cbaf2fd429af1d30592d08 (patch) | |
tree | 1cc3a747d8e07cb55fa2cc95d26e2b33c792d89f /sway/desktop | |
parent | 1f2e399ade77070a2d0b82856ad9a3eef96b8676 (diff) |
Use L_FLOATING instead of reapable boolean
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 1d21e80f..e91be4d4 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -754,6 +754,8 @@ static void render_container(struct sway_output *output, case L_TABBED: render_container_tabbed(output, damage, con, parent_focused); break; + case L_FLOATING: + sway_assert(false, "Didn't expect to see floating here"); } } |