Skip to content

Commit 87b1f73

Browse files
committed
Update DynamoViewModel.cs
1 parent ae54f7c commit 87b1f73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DynamoCoreWpf/ViewModels/Core/DynamoViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2157,7 +2157,7 @@ private void ShowOpenDialogAndOpenResult(object parameter)
21572157
string UICulture = CultureInfo.CurrentUICulture.Name;
21582158
string path = Path.Combine(location, "samples", UICulture);
21592159

2160-
if (Directory.Exists(path))
2160+
if (string.IsNullOrEmpty(LastSavedLocation) && Directory.Exists(path))
21612161
{
21622162
_fileDialog.InitialDirectory = path;
21632163
}

0 commit comments

Comments
 (0)