From f5f5040f201f949bf96c8524535572d30be849d5 Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Wed, 19 Sep 2012 12:29:45 +0100 Subject: [PATCH] Change "Updating HighLight data..." message to Debug() as this operation cannot possibly hang and it conveys no useful info to the end user. --- unireader.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unireader.lua b/unireader.lua index ff8581df9..df91da636 100644 --- a/unireader.lua +++ b/unireader.lua @@ -970,7 +970,7 @@ function UniReader:loadSettings(filename) if self.highlight.to_fix ~= nil then for _,fix_item in ipairs(self.highlight.to_fix) do if fix_item == "djvu invert y axle" then - InfoMessage:show("Updating HighLight data...", 1) + Debug("Updating HighLight data...") for pageno,text_table in pairs(self.highlight) do if type(pageno) == "number" then text_table = self:invertTextYAxel(pageno, text_table)