From f8f8a58bd9d87d50fb6f7c26a0e7d15df27888ed Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Tue, 17 Apr 2012 18:58:49 +0200 Subject: [PATCH] fixed my first use of showInfoMsgWithDelay --- unireader.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unireader.lua b/unireader.lua index 7d2553339..04523f980 100644 --- a/unireader.lua +++ b/unireader.lua @@ -332,7 +332,7 @@ end function UniReader:startHighLightMode() local t = self:getText(self.pageno) if not t or #t == 0 then - showInfoMsgWithDelay("No text available for highlight",1); + showInfoMsgWithDelay("No text available for highlight", 2000, 1); return nil end @@ -343,7 +343,7 @@ function UniReader:startHighLightMode() end end - showInfoMsgWithDelay("No visible text for highlight",1); + showInfoMsgWithDelay("No visible text for highlight", 2000, 1); print("## _findFirstWordInView none found in "..dump(t)) return nil