Skip to content

Commit 094032b

Browse files
author
AJubrey
committed
[CHANGED] adding this parrameter to these fields keeps the label widths consistent with the toggles near the top
1 parent 3acb38b commit 094032b

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
@@ -48,7 +48,7 @@ public override void OnInspectorGUI() {
4848
GUILayout.BeginHorizontal ();
4949
GUILayout.Label (new GUIContent (
5050
"Export Path:",
51-
"Relative path for saving Model Prefabs."));
51+
"Relative path for saving Model Prefabs."), GUILayout.Width(LabelWidth));
5252

5353
var pathLabel = ExportSettings.GetRelativeSavePath();
5454
if (pathLabel == ".") { pathLabel = "(Assets root)"; }
@@ -92,7 +92,7 @@ public override void OnInspectorGUI() {
9292
GUILayout.BeginHorizontal ();
9393
GUILayout.Label (new GUIContent (
9494
"3D Application:",
95-
"Select the 3D Application for which you would like to install the Unity integration."));
95+
"Select the 3D Application for which you would like to install the Unity integration."), GUILayout.Width(LabelWidth));
9696

9797
// dropdown to select Maya version to use
9898
var options = ExportSettings.GetDCCOptions();

0 commit comments

Comments
 (0)