diff --git a/TVRename/Forms/UI.cs b/TVRename/Forms/UI.cs index 65224ae0..1610c650 100644 --- a/TVRename/Forms/UI.cs +++ b/TVRename/Forms/UI.cs @@ -463,10 +463,13 @@ private string GroupItemsTitleDelegate(object groupKey) return HeaderName("Unpack", mDoc.TheActionList.Count(action => action is ActionUnArchive)); case "F-DownloadTorrent": - return HeaderName("Start/Stop Download", mDoc.TheActionList.Count(action => action is ActionTDownload || action is ActionTRemove)); + return HeaderName("Start/Stop Download", mDoc.TheActionList.Count(action => action is ActionTDownload or ActionTRemove)); case "E-Delete": - return HeaderName("Remove", mDoc.TheActionList.Count(action => action is ActionDeleteFile || action is ActionDeleteDirectory)); + return HeaderName("Remove", mDoc.TheActionList.Count(action => action is ActionDeleteFile or ActionDeleteDirectory)); + + case "L-Other": + return HeaderName("Remove from library", mDoc.TheActionList.Count(action => action is ChangeLibraryAction)); case "B-Rename": // ReSharper disable once MergeSequentialPatterns (I think it's clearer this way)