diff --git a/CreamInstaller/Selection.cs b/CreamInstaller/Selection.cs index 59b90bf..bae8c9b 100644 --- a/CreamInstaller/Selection.cs +++ b/CreamInstaller/Selection.cs @@ -59,7 +59,7 @@ internal sealed class Selection : IEquatable internal bool Enabled { get => TreeNode.Checked; set => TreeNode.Checked = value; } - internal IEnumerable DLC => SelectionDLC.All.Keys.Where(dlc => dlc.Selection.Equals(this)); + internal IEnumerable DLC => SelectionDLC.All.Keys.Where(dlc => Equals(dlc.Selection, this)); public bool Equals(Selection other) => other is not null && (ReferenceEquals(this, other) || Id == other.Id && Platform == other.Platform);