Skip to content

Commit

Permalink
uninstall progress meter was running backwards (delete_files() starts…
Browse files Browse the repository at this point in the history
… at the

 end and works to the start). Fixed to run forwards.
  • Loading branch information
icculus committed Feb 26, 2008
1 parent bdc49d4 commit d1e053a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mojosetup_mainline.lua
Expand Up @@ -1816,7 +1816,7 @@ local function uninstaller()
local ptype = _("Uninstalling")
local callback = function(fname, current, total)
fname = make_relative(fname, MojoSetup.destination)
local percent = calc_percent(current, total)
local percent = 100 - calc_percent(current, total)
local component = package.manifest[fname].key
if component == nil then
component = ""
Expand Down

0 comments on commit d1e053a

Please sign in to comment.