mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 12:05:59 +01:00
Fix check.
This commit is contained in:
parent
a759c008cd
commit
c25f892385
1 changed files with 1 additions and 1 deletions
2
render.c
2
render.c
|
@ -92,7 +92,7 @@ render_page(render_thread_t* render_thread, zathura_page_t* page)
|
|||
static bool
|
||||
render(zathura_t* zathura, zathura_page_t* page)
|
||||
{
|
||||
if (zathura == NULL || page == NULL || zathura->sync.render_thread->about_to_close == false) {
|
||||
if (zathura == NULL || page == NULL || zathura->sync.render_thread->about_to_close == true) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue