From 2c1e7f2a4f2201e0fecfadda207ca34fcaafe2f7 Mon Sep 17 00:00:00 2001 From: poire-z Date: Sat, 23 Sep 2017 00:10:47 +0200 Subject: [PATCH] Bump base for crengine bump (#3249) crengine crashes, rendering and selection delay fix by @frankyifei --- base | 2 +- spec/unit/readerlink_spec.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/base b/base index dd2013f28..014a300fc 160000 --- a/base +++ b/base @@ -1 +1 @@ -Subproject commit dd2013f28352f6d0ca38204eecf9218b507c4c24 +Subproject commit 014a300fc6d9e4d4fc265a739b9d6c573055a400 diff --git a/spec/unit/readerlink_spec.lua b/spec/unit/readerlink_spec.lua index 6cc2b7dd9..75767f410 100644 --- a/spec/unit/readerlink_spec.lua +++ b/spec/unit/readerlink_spec.lua @@ -18,7 +18,7 @@ describe("ReaderLink module", function() } readerui.rolling:onGotoPage(4) readerui.link:onTap(nil, {pos = {x = 336, y = 668}}) - assert.is.same(37, readerui.rolling.current_page) + assert.is.same(36, readerui.rolling.current_page) end) it("should jump to links in pdf page mode", function() @@ -55,7 +55,7 @@ describe("ReaderLink module", function() } readerui.rolling:onGotoPage(4) readerui.link:onTap(nil, {pos = {x = 336, y = 668}}) - assert.is.same(37, readerui.rolling.current_page) + assert.is.same(36, readerui.rolling.current_page) readerui.link:onGoBackLink() assert.is.same(4, readerui.rolling.current_page) end)