Skip to content
This repository has been archived by the owner on May 16, 2022. It is now read-only.

Commit

Permalink
Add amount of photos processed/total in progress caption
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Shishkin <me@teran.ru>
  • Loading branch information
teran committed Nov 5, 2017
1 parent a48e5b6 commit aeef89d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deduplicator.lrdevplugin/FindDuplicates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ function StartIndexing()
logger:debugf('Processing file %s', fileName)

indexerProgress:setPortionComplete(i, #catPhotos)
indexerProgress:setCaption("Processing " .. fileName)
indexerProgress:setCaption(
string.format("Processing %s (%s of %s)", fileName, i, #catPhotos))

IndexPhoto(photo)
end
Expand Down

0 comments on commit aeef89d

Please sign in to comment.