diff --git a/Editor/InputGlyph/InputGlyphDatabaseEditor.cs b/Editor/InputGlyph/InputGlyphDatabaseEditor.cs index 70e221d..a1f7e79 100644 --- a/Editor/InputGlyph/InputGlyphDatabaseEditor.cs +++ b/Editor/InputGlyph/InputGlyphDatabaseEditor.cs @@ -61,7 +61,7 @@ internal sealed class InputGlyphDatabaseWindow : EditorWindow internal static void OpenFromAsset(InputGlyphDatabase database) { - InputGlyphDatabaseWindow window = GetWindow(true, "Input Glyph Database", true); + InputGlyphDatabaseWindow window = GetWindow("Input Glyph Database", true); window.SetDatabase(database); window.minSize = new Vector2(940f, 560f); window.Show(); @@ -165,6 +165,7 @@ internal sealed class InputGlyphDatabaseWindow : EditorWindow SerializedProperty table = _tablesProperty.GetArrayElementAtIndex(i); DrawTableButton(i, table); } + EditorGUILayout.EndScrollView(); GUILayout.Space(6f); @@ -224,6 +225,7 @@ internal sealed class InputGlyphDatabaseWindow : EditorWindow { DrawTable(_selectedTable); } + GUILayout.EndArea(); } @@ -274,6 +276,7 @@ internal sealed class InputGlyphDatabaseWindow : EditorWindow DrawEntry(entriesProperty, i, entry); } + EditorGUILayout.EndScrollView(); }