From e88fdc41fa5cec99684fdef7d7063c67a8eb917f Mon Sep 17 00:00:00 2001 From: Stephane LOEUILLET Date: Sun, 23 Jan 2005 18:15:07 +0000 Subject: divide by scale at the right time. Bug #164996 2005-01-23 Stephane LOEUILLET * pdf/xpdf/pdf-document.cc (pdf_document_get_link): divide by scale at the right time. Bug #164996 --- (limited to 'pdf') diff --git a/pdf/xpdf/pdf-document.cc b/pdf/xpdf/pdf-document.cc index 96b1132..8449752 100644 --- a/pdf/xpdf/pdf-document.cc +++ b/pdf/xpdf/pdf-document.cc @@ -1045,17 +1045,17 @@ pdf_document_get_link (EvDocument *document, int x, int y) return NULL; } - /* Zoom */ - link_x = x / pdf_document->scale; - link_y = y / pdf_document->scale; - /* Offset */ - link_x -= pdf_document->page_x_offset; - link_y -= pdf_document->page_y_offset; + link_x = x - pdf_document->page_x_offset; + link_y = y - pdf_document->page_y_offset; /* Inverse y */ link_y = pdf_document->out->getBitmapHeight() - link_y; + /* Zoom */ + link_x = link_x / pdf_document->scale; + link_y = link_y / pdf_document->scale; + action = pdf_document->links->find (link_x, link_y); if (action) { -- cgit v0.9.1