mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-21 01:40:16 -05:00
sixel: verify-sixels: check for bad list order last
This commit is contained in:
parent
14b4231c09
commit
9102194846
1 changed files with 2 additions and 2 deletions
4
sixel.c
4
sixel.c
|
|
@ -201,8 +201,8 @@ static bool
|
|||
verify_sixels(const struct terminal *term)
|
||||
{
|
||||
return (verify_no_wraparound_crossover(term) &&
|
||||
verify_list_order(term) &&
|
||||
verify_no_overlap(term));
|
||||
verify_no_overlap(term) &&
|
||||
verify_list_order(term));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue