Skip to content

Commit e4e8a33

Browse files
author
AJubrey
committed
[CHANGED] the radio buttons into a dropdown menu
1 parent 3f256c0 commit e4e8a33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public override void OnInspectorGUI() {
4747

4848
GUILayout.BeginHorizontal();
4949
GUILayout.Label(new GUIContent("Export Format:", "Export the FBX file in the standard binary format." +
50-
" Select ASCII to export the FBX file in ASCII format."), GUILayout.Width(LabelWidth));
51-
exportSettings.ExportFormatSelection = GUILayout.SelectionGrid(exportSettings.ExportFormatSelection, new string[]{"Binary", "ASCII"}, 2, EditorStyles.radioButton);
50+
" Select ASCII to export the FBX file in ASCII format."), GUILayout.Width(LabelWidth - 3));
51+
exportSettings.ExportFormatSelection = EditorGUILayout.Popup(exportSettings.ExportFormatSelection, new string[]{"Binary", "ASCII"});
5252
GUILayout.EndHorizontal();
5353

5454
GUILayout.BeginHorizontal ();

0 commit comments

Comments
 (0)