From 885061fe81f2b83b473150d0d353e1083d595397 Mon Sep 17 00:00:00 2001 From: Mikhail Glazatov Date: Tue, 29 Jul 2025 17:36:47 +0700 Subject: [PATCH] Fix a problem where the Project Settings window would not display correctly when opening PICO Platform Settings --- Platform/Editor/PlatformConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/Editor/PlatformConfig.cs b/Platform/Editor/PlatformConfig.cs index 5ded058..9348e43 100644 --- a/Platform/Editor/PlatformConfig.cs +++ b/Platform/Editor/PlatformConfig.cs @@ -277,7 +277,7 @@ void OnGUI() GUILayout.Space(5); GUILayout.Label(new GUIContent(strBuildSettingText[(int) language], strBuildSettingHelpText[(int) language])); - GUIStyle style = "frameBox"; + GUIStyle style = new GUIStyle("frameBox"); style.fixedWidth = frameWidth; EditorGUILayout.BeginVertical(style);