mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 11:46:01 +01:00
Update link evaluation
This commit is contained in:
parent
f69bfcb5c1
commit
11bf7ba2c8
1 changed files with 18 additions and 22 deletions
10
links.c
10
links.c
|
@ -121,8 +121,7 @@ zathura_link_evaluate(zathura_t* zathura, zathura_link_t* link)
|
|||
|
||||
switch (link->type) {
|
||||
case ZATHURA_LINK_GOTO_DEST:
|
||||
switch (link->target.destination_type) {
|
||||
case ZATHURA_LINK_DESTINATION_XYZ: {
|
||||
if (link->target.destination_type != ZATHURA_LINK_DESTINATION_UNKNOWN) {
|
||||
if (link->target.scale != 0) {
|
||||
zathura_document_set_scale(zathura->document, link->target.scale);
|
||||
}
|
||||
|
@ -140,6 +139,7 @@ zathura_link_evaluate(zathura_t* zathura, zathura_link_t* link)
|
|||
page_offset_t offset;
|
||||
page_calculate_offset(zathura, page, &offset);
|
||||
|
||||
if (link->target.destination_type == ZATHURA_LINK_DESTINATION_XYZ) {
|
||||
if (link->target.left != -1) {
|
||||
offset.x += link->target.left * zathura_document_get_scale(zathura->document);
|
||||
}
|
||||
|
@ -147,14 +147,10 @@ zathura_link_evaluate(zathura_t* zathura, zathura_link_t* link)
|
|||
if (link->target.top != -1) {
|
||||
offset.y += link->target.top * zathura_document_get_scale(zathura->document);
|
||||
}
|
||||
}
|
||||
|
||||
position_set_delayed(zathura, offset.x, offset.y);
|
||||
statusbar_page_number_update(zathura);
|
||||
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case ZATHURA_LINK_GOTO_REMOTE:
|
||||
|
|
Loading…
Reference in a new issue