Skip to content

Commit 740aaa7

Browse files
committed
increase min window height to fit added UI
1 parent a2a05db commit 740aaa7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Assets/FbxExporters/Editor/ConvertToPrefabEditorWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Editor
1313
public class ConvertToPrefabEditorWindow : ExportOptionsEditorWindow
1414
{
1515
protected override GUIContent WindowTitle { get { return new GUIContent ("Convert Options"); }}
16-
protected override float MinWindowHeight { get { return 280; } } // determined by trial and error
16+
protected override float MinWindowHeight { get { return 350; } } // determined by trial and error
1717
protected override string ExportButtonName { get { return "Convert"; } }
1818
private string m_prefabFileName = "";
1919

Assets/FbxExporters/Editor/ExportModelEditorWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ protected bool OverwriteExistingFile(string filePath){
378378

379379
public class ExportModelEditorWindow : ExportOptionsEditorWindow
380380
{
381-
protected override float MinWindowHeight { get { return 260; } }
381+
protected override float MinWindowHeight { get { return 310; } } // determined by trial and error
382382
protected override bool DisableNameSelection {
383383
get {
384384
return IsPlayableDirector;

0 commit comments

Comments
 (0)