Added count of items removed from library.

This commit is contained in:
Michael Bucari-Tovo 2021-07-02 15:01:55 -06:00
parent 00f7e4b779
commit 771d992da7
4 changed files with 14 additions and 10 deletions

View file

@ -284,8 +284,9 @@ namespace LibationWinForms
var totalProcessed = dialog.TotalBooksProcessed;
var newAdded = dialog.NewBooksAdded;
var oldRemoved = dialog.OldBooksRemoved;
MessageBox.Show($"Total processed: {totalProcessed}\r\nNew: {newAdded}");
MessageBox.Show($"Total processed: {totalProcessed}\r\nNew: {newAdded}\r\nRemoved: {oldRemoved}");
if (totalProcessed > 0)
reloadGrid();