From abc4cb0a0732697d25608ba8399ac1ad00462b00 Mon Sep 17 00:00:00 2001 From: zvinless Date: Wed, 23 Nov 2016 22:30:39 -0800 Subject: [PATCH] Added newlines to switch for consistency --- Assets/Fungus/Scripts/Editor/FlowchartWindow.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs b/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs index 5efdbdfa..11050ce3 100644 --- a/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs +++ b/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs @@ -371,17 +371,20 @@ namespace Fungus.EditorUtils centerBlock = true; useEvent = true; break; + case KeyCode.UpArrow: --blockPopupSelection; centerBlock = true; useEvent = true; break; + case KeyCode.Return: centerBlock = true; selectBlock = true; closePopup = true; useEvent = true; break; + case KeyCode.Escape: closePopup = true; useEvent = true;