This commit is contained in:
Michael Bucari-Tovo 2022-05-24 18:24:53 -06:00
parent bc0009be6c
commit ed66019d9a
2 changed files with 1 additions and 5 deletions

View File

@ -30,10 +30,7 @@ namespace LibationWinForms.GridView
if (status.IsSeries) if (status.IsSeries)
{ {
var imageName = status.Expanded ? "minus" : "plus"; DrawButtonImage(graphics, status.Expanded ? Properties.Resources.minus: Properties.Resources.plus, cellBounds);
var bmp = (Bitmap)Properties.Resources.ResourceManager.GetObject(imageName);
DrawButtonImage(graphics, bmp, cellBounds);
ToolTipText = status.Expanded ? "Click to Collpase" : "Click to Expand"; ToolTipText = status.Expanded ? "Click to Collpase" : "Click to Expand";
} }

View File

@ -282,7 +282,6 @@ namespace LibationWinForms.ProcessQueue
private async void Processable_Completed(object sender, LibraryBook libraryBook) private async void Processable_Completed(object sender, LibraryBook libraryBook)
{ {
Logger.Info($"{((Processable)sender).Name} Step, Completed: {libraryBook.Book}"); Logger.Info($"{((Processable)sender).Name} Step, Completed: {libraryBook.Book}");
UnlinkProcessable((Processable)sender); UnlinkProcessable((Processable)sender);