Skip to content

Commit 9c7b900

Browse files
committed
fix: Use EditorGUILayout.HorizontalScope instead
1 parent da4a47b commit 9c7b900

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Plugins/LocalizationExtension/Editor/Google/StringTableCollection/StringTableCollectionBundleEditor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public override void OnInspectorGUI()
3030
private void DrawToolsWithSheetsServiceProvider()
3131
{
3232
EditorGUILayout.LabelField("Tools (using SheetsServiceProvider)", EditorStyles.boldLabel);
33-
using var h = new GUILayout.HorizontalScope();
33+
using var h = new EditorGUILayout.HorizontalScope();
3434
if (GUILayout.Button("Pull All Locales"))
3535
{
3636
var serviceProvider = GetSheetsServiceProvider();
@@ -47,7 +47,7 @@ private void DrawToolsWithSheetsServiceProvider()
4747
private void DrawToolsWithServiceAccount()
4848
{
4949
EditorGUILayout.LabelField("Tools (using Google Service Account)", EditorStyles.boldLabel);
50-
using var h = new GUILayout.HorizontalScope();
50+
using var h = new EditorGUILayout.HorizontalScope();
5151
if (GUILayout.Button("Pull All Locales"))
5252
{
5353
PullWithGoogleServiceAccount();

0 commit comments

Comments
 (0)