fix refresh queries nre
This commit is contained in:
parent
5e6be10d2e
commit
dbd0f81124
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ internal sealed class Selection : IEquatable<Selection>
|
|||
|
||||
internal bool Enabled { get => TreeNode.Checked; set => TreeNode.Checked = value; }
|
||||
|
||||
internal IEnumerable<SelectionDLC> DLC => SelectionDLC.All.Keys.Where(dlc => dlc.Selection.Equals(this));
|
||||
internal IEnumerable<SelectionDLC> 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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue