From a1dd3bb9dfd15801c32c4cc0b7a7ccc7140af3da Mon Sep 17 00:00:00 2001 From: Thor Brigsted Date: Mon, 6 Nov 2017 01:12:49 +0100 Subject: [PATCH] Changed window name to xNode --- Scripts/Editor/NodeEditorWindow.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Scripts/Editor/NodeEditorWindow.cs b/Scripts/Editor/NodeEditorWindow.cs index 45df18a..5d993c3 100644 --- a/Scripts/Editor/NodeEditorWindow.cs +++ b/Scripts/Editor/NodeEditorWindow.cs @@ -27,10 +27,9 @@ namespace XNodeEditor { partial void OnEnable(); /// Create editor window - //[MenuItem("Window/UNEC")] public static NodeEditorWindow Init() { NodeEditorWindow w = CreateInstance(); - w.titleContent = new GUIContent("UNEC"); + w.titleContent = new GUIContent("xNode"); w.wantsMouseMove = true; w.Show(); return w;