mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-30 17:14:56 +01:00
Handle 0 pages-per-row
This commit is contained in:
parent
4146cfbb84
commit
9f5430e449
1 changed files with 5 additions and 0 deletions
|
@ -335,6 +335,11 @@ error_out:
|
|||
void
|
||||
page_view_set_mode(zathura_t* zathura, unsigned int pages_per_row)
|
||||
{
|
||||
/* show at least one page */
|
||||
if (pages_per_row == 0) {
|
||||
pages_per_row = 1;
|
||||
}
|
||||
|
||||
gtk_table_resize(GTK_TABLE(zathura->ui.page_view), zathura->document->number_of_pages / pages_per_row + 1, pages_per_row);
|
||||
for (unsigned int i = 0; i < zathura->document->number_of_pages; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue