mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 08:53:46 +01:00
Fix missing else in if condition
This commit is contained in:
parent
7cdd1e7719
commit
2b6fa0cfe6
@ -818,7 +818,7 @@ sc_bisect(girara_session_t* session, girara_argument_t* argument,
|
|||||||
zathura->bisect.start = 0;
|
zathura->bisect.start = 0;
|
||||||
zathura->bisect.end = num_pages - 1;
|
zathura->bisect.end = num_pages - 1;
|
||||||
|
|
||||||
} if (jump->page != cur_page || jump->page != zathura->bisect.last_jump) {
|
} else if (jump->page != cur_page || jump->page != zathura->bisect.last_jump) {
|
||||||
girara_debug("last jump doesn't match up, starting new bisecting");
|
girara_debug("last jump doesn't match up, starting new bisecting");
|
||||||
zathura->bisect.start = 0;
|
zathura->bisect.start = 0;
|
||||||
zathura->bisect.end = num_pages - 1;
|
zathura->bisect.end = num_pages - 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user