Skip to content

Commit 35ec018

Browse files
committed
remove colons from labels
1 parent 1ca959e commit 35ec018

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Assets/FbxExporters/Editor/ConvertToPrefabEditorWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ protected override void CreateCustomUI ()
119119
{
120120
GUILayout.BeginHorizontal ();
121121
EditorGUILayout.LabelField(new GUIContent(
122-
"Prefab Name:",
122+
"Prefab Name",
123123
"Filename to save prefab to."),GUILayout.Width(LabelWidth-TextFieldAlignOffset));
124124

125125
EditorGUI.BeginDisabledGroup (DisableNameSelection);
@@ -144,7 +144,7 @@ protected override void CreateCustomUI ()
144144

145145
GUILayout.BeginHorizontal();
146146
EditorGUILayout.LabelField(new GUIContent(
147-
"Prefab Path:",
147+
"Prefab Path",
148148
"Relative path for saving Linked Prefabs."),GUILayout.Width(LabelWidth - FieldOffset));
149149

150150
var pathLabels = ExportSettings.GetRelativePrefabSavePaths();

Assets/FbxExporters/Editor/ExportModelEditorWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ protected void OnGUI ()
261261

262262
GUILayout.BeginHorizontal ();
263263
EditorGUILayout.LabelField(new GUIContent(
264-
"Export Name:",
264+
"Export Name",
265265
"Filename to save model to."),GUILayout.Width(LabelWidth-TextFieldAlignOffset));
266266

267267
EditorGUI.BeginDisabledGroup (DisableNameSelection);
@@ -286,7 +286,7 @@ protected void OnGUI ()
286286

287287
GUILayout.BeginHorizontal();
288288
EditorGUILayout.LabelField(new GUIContent(
289-
"Export Path:",
289+
"Export Path",
290290
"Relative path for saving Model Prefabs."),GUILayout.Width(LabelWidth - FieldOffset));
291291

292292
var pathLabels = ExportSettings.GetRelativeFbxSavePaths();

0 commit comments

Comments
 (0)