mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Perception expander: disable margin increase when set to 0 (#6377)
Closes #6376
This commit is contained in:
@@ -128,7 +128,7 @@ function PerceptionExpander:showSettingsDialog()
|
||||
{
|
||||
text = "",
|
||||
input_type = "number",
|
||||
hint = T(_("Increase margin after pages. Current value: %1"),
|
||||
hint = T(_("Increase margin after pages. Current value: %1\nSet to 0 to disable."),
|
||||
self.shift_each_pages),
|
||||
},
|
||||
},
|
||||
@@ -203,7 +203,7 @@ function PerceptionExpander:onPageUpdate(pageno)
|
||||
self:createUI()
|
||||
end
|
||||
|
||||
if self.page_counter >= self.shift_each_pages and self.margin < self.ALMOST_CENTER_OF_THE_SCREEN then
|
||||
if self.shift_each_pages ~= 0 and self.page_counter >= self.shift_each_pages and self.margin < self.ALMOST_CENTER_OF_THE_SCREEN then
|
||||
self.page_counter = 0
|
||||
self.margin = self.margin + self.margin_shift
|
||||
self.left_line.dimen.x = self.screen_width * self.margin
|
||||
|
||||
Reference in New Issue
Block a user