sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 33b4f945aba39a728bfe20bef6ce4396df494a03
parent c47b4d4edb7714612ec7236fafda5ca54cb92ce4
Author: emersion <contact@emersion.fr>
Date:   Sat,  7 Apr 2018 12:03:13 -0400

Fix inverted assertion

Seems like it doesn't work this way

Diffstat:
Msway/desktop/output.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -410,7 +410,7 @@ static void output_damage_whole_container_iterator(struct sway_container *con, void *data) { struct sway_output *output = data; - if (!sway_assert(con->type != C_VIEW, "expected a view")) { + if (!sway_assert(con->type == C_VIEW, "expected a view")) { return; }