Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

## Bug fixes:

*Contributors of this release (in alphabetical order):*
* Fix: Error message box when creating feature file with space in its name (#50)

*Contributors of this release (in alphabetical order):* @gasparnagy

# v2024.7.204 - 2024-11-20

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private static void OpenFile(string targetFile, Project project, IDeveroomLogger
if (projectItem != null)
{
//projectItem.Open();
project.DTE.ExecuteCommand("File.OpenFile", targetFile);
project.DTE.ExecuteCommand("File.OpenFile", $"\"{targetFile}\"");
logger.LogVerbose($"File opened: {targetFile}");
}
}
Expand Down
Loading