Skip to content

Commit

Permalink
Fix misplaced brace
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug committed Nov 10, 2023
1 parent e700d6f commit a0d3b95
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/interface_derived.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ void MainFrameDerived::OpenProject(const long& index){
}
#if __APPLE__
for (const auto& path : installPaths) {
if (filesystem::exists(path / executable)) {
if (filesystem::exists(path / executable)) {
// mac unlabeled version
auto unlabeledPath = path / executable;
char buffer[16];
Expand All @@ -412,8 +412,9 @@ void MainFrameDerived::OpenProject(const long& index){
return;
}
}
#endif
}
#endif


// prompt the user to choose a new editor because we couldn't locate one
wxCommandEvent evt;
Expand Down

0 comments on commit a0d3b95

Please sign in to comment.