From 5a88ddbda684a9f03e9fd368bcc327a531dadbfa Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 25 Jun 2018 22:46:07 +0200 Subject: [PATCH] Removed automatically setting header to white. Controlling header color is now easier --- Scripts/Editor/NodeEditor.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Scripts/Editor/NodeEditor.cs b/Scripts/Editor/NodeEditor.cs index d76a624..475a3b6 100644 --- a/Scripts/Editor/NodeEditor.cs +++ b/Scripts/Editor/NodeEditor.cs @@ -23,7 +23,6 @@ namespace XNodeEditor { } public virtual void OnHeaderGUI() { - GUI.color = Color.white; string title = target.name; if (renaming != 0 && Selection.Contains(target)) { int controlID = EditorGUIUtility.GetControlID(FocusType.Keyboard) + 1;