sway

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

commit a91a1a419c5d4e92acf72e0db1b285f00e57f4e1
parent c47b4d4edb7714612ec7236fafda5ca54cb92ce4
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat,  7 Apr 2018 12:11:24 -0400

Merge pull request #1765 from emersion/fix-bad-assert

Fix inverted assertion
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; }