mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 20:13:53 +01:00
Fix links that target a location within a page
Before, clicking on a link would always jump to the beginning of the linked-to page, even when the link targets a specific point within the page.
This commit is contained in:
parent
0ea99dff36
commit
242329b534
@ -172,14 +172,14 @@ link_goto_dest(zathura_t* zathura, const zathura_link_t* link)
|
||||
/* shift the position or set to auto */
|
||||
if (link->target.destination_type == ZATHURA_LINK_DESTINATION_XYZ &&
|
||||
link->target.left != -1 && link_hadjust == true) {
|
||||
pos_x += shiftx / doc_width;
|
||||
pos_x += shiftx * cell_width / doc_width;
|
||||
} else {
|
||||
pos_x = -1; /* -1 means automatic */
|
||||
}
|
||||
|
||||
if (link->target.destination_type == ZATHURA_LINK_DESTINATION_XYZ &&
|
||||
link->target.top != -1) {
|
||||
pos_y += shifty / doc_height;
|
||||
pos_y += shifty * cell_height / doc_height;
|
||||
} else {
|
||||
pos_y = -1; /* -1 means automatic */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user