We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633ec5f commit e331f75Copy full SHA for e331f75
app/src/processing/app/Sketch.java
@@ -649,14 +649,6 @@ protected boolean saveAs() throws IOException {
649
Base.copyDir(data.getCodeFolder(), newCodeFolder);
650
}
651
652
- // copy custom applet.html file if one exists
653
- // http://dev.processing.org/bugs/show_bug.cgi?id=485
654
- File customHtml = new File(data.getFolder(), "applet.html");
655
- if (customHtml.exists()) {
656
- File newHtml = new File(newFolder, "applet.html");
657
- Base.copyFile(customHtml, newHtml);
658
- }
659
-
660
// save the main tab with its new name
661
File newFile = new File(newFolder, newName + ".ino");
662
data.getCode(0).saveAs(newFile);
0 commit comments