File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace Editor
13
13
public class ConvertToPrefabEditorWindow : ExportOptionsEditorWindow
14
14
{
15
15
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 300 ; } } // determined by trial and error
17
17
protected override string ExportButtonName { get { return "Convert" ; } }
18
18
private GameObject [ ] m_toConvert ;
19
19
private string m_prefabFileName = "" ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public abstract class ExportOptionsEditorWindow : EditorWindow
20
20
protected const float TextFieldAlignOffset = 3 ;
21
21
protected const float ExportButtonWidth = 100 ;
22
22
protected const float FbxExtOffset = - 7 ;
23
- protected virtual float MinWindowHeight { get { return 250 ; } }
23
+ protected virtual float MinWindowHeight { get { return 300 ; } }
24
24
25
25
protected virtual string ExportButtonName { get { return "Export" ; } }
26
26
@@ -219,7 +219,7 @@ protected void OnGUI ()
219
219
this . Close ( ) ;
220
220
}
221
221
GUILayout . EndHorizontal ( ) ;
222
-
222
+ GUILayout . Space ( 20 ) ;
223
223
if ( GUI . changed ) {
224
224
SaveExportSettings ( ) ;
225
225
}
You can’t perform that action at this time.
0 commit comments