Skip to content

Commit

Permalink
Allow label on Utilities to be clicked
Browse files Browse the repository at this point in the history
- Requested by Vowgan
  • Loading branch information
MerlinVR committed Oct 15, 2020
1 parent 04a0276 commit 777dcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/UdonSharp/Editor/Editors/UdonSharpGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ internal static void DrawUtilities(UdonBehaviour udonBehaviour, UdonSharpProgram

if (udonBehaviour)
{
editorState.showExtraOptions = programAsset.showUtilityDropdown = EditorGUILayout.Foldout(editorState.showExtraOptions, "Utilities");
editorState.showExtraOptions = programAsset.showUtilityDropdown = EditorGUILayout.Foldout(editorState.showExtraOptions, "Utilities", true);
if (editorState.showExtraOptions)
{
if (GUILayout.Button("Compile All UdonSharp Programs"))
Expand Down

0 comments on commit 777dcaa

Please sign in to comment.