Fix File Dialog Cancel Error Log

选择文件时取消报错修复
pull/342/head
miuleung 2024-08-13 16:05:20 +08:00
parent ae454b72dc
commit c156b5c0a7
1 changed files with 2 additions and 3 deletions

View File

@ -29,9 +29,8 @@ namespace YooAsset.Editor
if (GUILayout.Button("选择补丁包", GUILayout.MaxWidth(150))) if (GUILayout.Button("选择补丁包", GUILayout.MaxWidth(150)))
{ {
string resultPath = EditorUtility.OpenFilePanel("Find", "Assets/", "bytes"); string resultPath = EditorUtility.OpenFilePanel("Find", "Assets/", "bytes");
if (string.IsNullOrEmpty(resultPath)) if (!string.IsNullOrEmpty(resultPath))
return; _manifestPath = resultPath;
_manifestPath = resultPath;
} }
EditorGUILayout.LabelField(_manifestPath); EditorGUILayout.LabelField(_manifestPath);
EditorGUILayout.EndHorizontal(); EditorGUILayout.EndHorizontal();