From 7feea4037ee79d378fc7abbcc4e6a9f1286a3223 Mon Sep 17 00:00:00 2001 From: poire-z Date: Wed, 10 Jan 2018 00:36:55 +0100 Subject: [PATCH] HTML dict: fix continuous scroll with tap (#3587) --- frontend/ui/widget/scrollhtmlwidget.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/ui/widget/scrollhtmlwidget.lua b/frontend/ui/widget/scrollhtmlwidget.lua index 174a6691a..9ba21550d 100644 --- a/frontend/ui/widget/scrollhtmlwidget.lua +++ b/frontend/ui/widget/scrollhtmlwidget.lua @@ -128,7 +128,7 @@ function ScrollHtmlWidget:onTapScrollText(arg, ges) return true end else - if self.htmlbox_widget.page_number <= self.htmlbox_widget.page_count then + if self.htmlbox_widget.page_number < self.htmlbox_widget.page_count then self:scrollText(1) return true end