From 999f9beaf82c344d25a98a285039856aae028032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E6=B5=B7?= <1464576565@qq.com> Date: Wed, 29 Apr 2026 14:48:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BC=96=E8=BE=91=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Editor/InputGlyph/InputGlyphDatabaseEditor.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(); }