1
0
mirror of https://github.com/Siccity/xNode.git synced 2026-03-26 22:49:02 +08:00
This commit is contained in:
Icarus 2019-12-03 22:30:35 +08:00
parent 62133630de
commit 15ef25888c

View File

@ -233,22 +233,6 @@ namespace XNodeEditor {
break;
}
}
private void _action()
{
Event e = Event.current;
switch (e.type)
{
case EventType.KeyDown:
if (e.keyCode == KeyCode.DownArrow && !HasFocus())
{
this.SetFocusAndEnsureSelectedItem();
e.Use();
}
break;
}
}
}
/// <summary> Base class to derive custom Node Graph editors from. Use this to override how graphs are drawn in the editor. </summary>