Skip to content

Commit

Permalink
returns whether a file was opened
Browse files Browse the repository at this point in the history
Fixes #477 when a file is opened through the command line.
  • Loading branch information
guilhermesilveira committed Apr 26, 2022
1 parent e9299d0 commit d8dc99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/processing/app/Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -1625,7 +1625,7 @@ public Editor handleOpen(String path) {
nextMode = mode;
}
*/
handleOpenInternal(pdeFile.getAbsolutePath(), false);
return handleOpenInternal(pdeFile.getAbsolutePath(), false);

} catch (IOException e) {
Messages.showWarning("sketch.properties",
Expand Down

0 comments on commit d8dc99e

Please sign in to comment.