mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 22:06:02 +01:00
Fixed get_height
This commit is contained in:
parent
88f4bbab96
commit
61782f4bf1
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ djvu_page_get(zathura_document_t* document, unsigned int page)
|
|||
while(!ddjvu_page_decoding_done(document_page->data));
|
||||
|
||||
document_page->width = ddjvu_page_get_width(document_page->data);
|
||||
document_page->height = ddjvu_page_get_width(document_page->data);
|
||||
document_page->height = ddjvu_page_get_height(document_page->data);
|
||||
|
||||
return document_page;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue