Skip to content

Commit

Permalink
Merge pull request #423 from carboncopies/419-on-windows-opening-new-…
Browse files Browse the repository at this point in the history
…project-leaves-old-instance-open

419 on windows opening new project leaves old instance open
  • Loading branch information
datacrystals authored Sep 29, 2022
2 parents 6bde168 + 6be6aac commit 3525ac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void GUI_Window_NewProject::Draw() {

std::string Command;
#if defined(_WIN32)
Command += "";
Command += "start /B ";
#elif defined(__APPLE__)
Command += "./";
#else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void GUI_Window_OpenProject::Draw() {
std::string Command;

#if defined(_WIN32)
Command += "";
Command += "start /B ";
#elif defined(__APPLE__)
Command += "./";
#else
Expand Down

0 comments on commit 3525ac3

Please sign in to comment.