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 1d21378 commit 76be212Copy full SHA for 76be212
app/src/processing/app/Sketch.java
@@ -648,14 +648,6 @@ protected boolean saveAs() throws IOException {
648
Base.copyDir(data.getCodeFolder(), newCodeFolder);
649
}
650
651
- // copy custom applet.html file if one exists
652
- // http://dev.processing.org/bugs/show_bug.cgi?id=485
653
- File customHtml = new File(data.getFolder(), "applet.html");
654
- if (customHtml.exists()) {
655
- File newHtml = new File(newFolder, "applet.html");
656
- Base.copyFile(customHtml, newHtml);
657
- }
658
-
659
// save the main tab with its new name
660
File newFile = new File(newFolder, newName + ".ino");
661
data.getCode(0).saveAs(newFile);
0 commit comments