Skip to content

Commit 4e0d4d7

Browse files
author
Benoit Hudson
committed
UNI-22052: on min width, browse button requires scrolling
Abbrvtd the label and reduced the min-width of the path label.
1 parent 43b151a commit 4e0d4d7

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
@@ -10,7 +10,7 @@ namespace FbxExporters.EditorTools {
1010
public class ExportSettingsEditor : UnityEditor.Editor {
1111
Vector2 scrollPos = Vector2.zero;
1212
const float LabelWidth = 225;
13-
const float SelectableLabelMinWidth = 200;
13+
const float SelectableLabelMinWidth = 100;
1414
const float BrowseButtonWidth = 55;
1515

1616
public override void OnInspectorGUI() {
@@ -42,7 +42,7 @@ public override void OnInspectorGUI() {
4242

4343
GUILayout.BeginHorizontal ();
4444
GUILayout.Label (new GUIContent (
45-
"Model Prefab Path:",
45+
"Export Path:",
4646
"Relative path for saving Model Prefabs."));
4747

4848
EditorGUILayout.SelectableLabel(GetRelativePath(exportSettings.convertToModelSavePath, Application.dataPath),

0 commit comments

Comments
 (0)