From 56a54399ed7a8f09168bdec77791b807b465e4d5 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Fri, 14 Nov 2014 17:00:59 +0000 Subject: [PATCH] Changed None to for consistency with other properties --- Assets/Fungus/FungusScript/Editor/SequenceEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/FungusScript/Editor/SequenceEditor.cs b/Assets/Fungus/FungusScript/Editor/SequenceEditor.cs index 69bf1365..a6dd9a2c 100644 --- a/Assets/Fungus/FungusScript/Editor/SequenceEditor.cs +++ b/Assets/Fungus/FungusScript/Editor/SequenceEditor.cs @@ -104,7 +104,7 @@ namespace Fungus currentType = sequence.eventHandler.GetType(); } - string currentHandlerName = "None"; + string currentHandlerName = ""; if (currentType != null) { EventHandlerInfoAttribute info = EventHandlerEditor.GetEventHandlerInfo(currentType);