John Smith commited on 2023-151 10:07:40 Showing 1 changed files, with 1 additions and 1 deletions.
Memoire terminal review will now not display progress if the ShowProgress option is set, but to `false`.
@@ -3,7 +3,7 @@
configuring that to happen
]]
local function showprogress(k, n, conf)
- if conf:get("ShowProgress") then
+ if conf:get("ShowProgress") and conf:get("ShowProgress") ~= "false" then
io.write(string.format("(%d/%d) ", k, n))
end