mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user