mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-29 08:34:59 +01:00
Fix inverted assertion
Seems like it doesn't work this way
This commit is contained in:
parent
c47b4d4edb
commit
33b4f945ab
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue