새 프로젝트 생성 에러 수정 #186

Merged
UVCXR merged 1 commits from jym/250627_01 into main 2025-06-30 15:55:34 +09:00
2 changed files with 6 additions and 0 deletions

View File

@@ -37,6 +37,9 @@ namespace Studio.UI
{
var paths = StandaloneFileBrowser.OpenFolderPanel("Select Folder", "", false);
if (paths == null)
return;
if (paths.Count > 0 && !string.IsNullOrEmpty(paths[0].Name))
{
var path = Path.GetDirectoryName(paths[0].Name);

View File

@@ -32,6 +32,9 @@ namespace Studio.UI
{
var paths = StandaloneFileBrowser.OpenFolderPanel("Select Folder", "", false);
if (paths == null)
return;
if (paths.Count > 0 && !string.IsNullOrEmpty(paths[0].Name))
{
var path = Path.GetDirectoryName(paths[0].Name);