From 2536ae43519eddece6869b7237e2d805eb0e1dc3 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Sat, 19 Mar 2016 01:46:47 -0700 Subject: [PATCH] Reduced width of variable popup --- Assets/Fungus/Flowchart/Editor/VariableEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Flowchart/Editor/VariableEditor.cs b/Assets/Fungus/Flowchart/Editor/VariableEditor.cs index 935bf295..3daea4ed 100644 --- a/Assets/Fungus/Flowchart/Editor/VariableEditor.cs +++ b/Assets/Fungus/Flowchart/Editor/VariableEditor.cs @@ -209,7 +209,7 @@ namespace Fungus protected virtual void DrawSingleLineProperty(Rect rect, GUIContent label, SerializedProperty referenceProp, SerializedProperty valueProp, Flowchart flowchart) { - const int popupWidth = 60; + const int popupWidth = 17; Rect controlRect = EditorGUI.PrefixLabel(rect, label); Rect valueRect = controlRect;