From cd3f21fa7235c2db161e061b3c0902a75ad2556d Mon Sep 17 00:00:00 2001 From: Marie Guffroy Date: Mon, 14 Dec 2020 16:30:30 +0100 Subject: [PATCH] Fix compilation error --- AssetDependencyGraph/Editor/AssetDependencyGraph.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AssetDependencyGraph/Editor/AssetDependencyGraph.cs b/AssetDependencyGraph/Editor/AssetDependencyGraph.cs index 5ac5055..4934632 100644 --- a/AssetDependencyGraph/Editor/AssetDependencyGraph.cs +++ b/AssetDependencyGraph/Editor/AssetDependencyGraph.cs @@ -99,7 +99,7 @@ public void OnEnable() m_GraphView.ClearSelection(); // m_GraphView.graphElements.ForEach(y => { // BROKEN, Case 1268337 m_GraphView.graphElements.ToList().ForEach(y => { - if (y is Node node && y.title.IndexOf(x.newValue, StringComparison.OrdinalIgnoreCase) >= 0) { + if (y is Node node && y.title.IndexOf(x.newValue, System.StringComparison.OrdinalIgnoreCase) >= 0) { m_GraphView.AddToSelection(node); } });