ReaderView: ensure pan zoom mode on document open (#11425)

When we open the document for the first time, the pan
positions are not being applied. If I use the bottom-to-top
mode we should see the bottom first, but the top is being
shown instead.
reviewable/pr11463/r1^2
hugleo 2 months ago committed by GitHub
parent ef0077df23
commit 52fae11da7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -695,7 +695,7 @@ function ReaderView:recalculate()
-- start from right of page_area
self.visible_area.x = self.page_area.x + self.page_area.w - self.visible_area.w
end
if self.ui.zooming.zoom_bottom_to_top then
if self.document.configurable.zoom_direction >= 2 and self.document.configurable.zoom_direction <= 5 then -- zoom_bottom_to_top
-- starts from bottom of page_area
self.visible_area.y = self.page_area.y + self.page_area.h - self.visible_area.h
else

Loading…
Cancel
Save