We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96ef3c commit b370d8eCopy full SHA for b370d8e
AssetDependencyGraph/Editor/AssetDependencyGraph.cs
@@ -99,7 +99,7 @@ public void OnEnable()
99
m_GraphView.ClearSelection();
100
// m_GraphView.graphElements.ForEach(y => { // BROKEN, Case 1268337
101
m_GraphView.graphElements.ToList().ForEach(y => {
102
- if (y is Node node && y.title.Contains(x.newValue)) {
+ if (y is Node node && y.title.IndexOf(x.newValue, StringComparison.OrdinalIgnoreCase) >= 0) {
103
m_GraphView.AddToSelection(node);
104
}
105
});
0 commit comments