1
0
mirror of https://github.com/Siccity/xNode.git synced 2026-03-26 22:49:02 +08:00

Fix handles color not being reset to original color

This commit is contained in:
Christiaan Bloemendaal 2020-05-27 12:54:32 +02:00
parent 8046e6e0bf
commit d3959a16d9

View File

@ -142,6 +142,7 @@ namespace XNodeEditor {
for (int i = 0; i < gridPoints.Count; ++i) for (int i = 0; i < gridPoints.Count; ++i)
gridPoints[i] = GridToWindowPosition(gridPoints[i]); gridPoints[i] = GridToWindowPosition(gridPoints[i]);
Color originalHandlesColor = Handles.color;
Handles.color = gradient.Evaluate(0f); Handles.color = gradient.Evaluate(0f);
int length = gridPoints.Count; int length = gridPoints.Count;
switch (path) { switch (path) {
@ -305,6 +306,7 @@ namespace XNodeEditor {
gridPoints[length - 1] = end; gridPoints[length - 1] = end;
break; break;
} }
Handles.color = originalHandlesColor;
} }
/// <summary> Draws all connections </summary> /// <summary> Draws all connections </summary>