@@ -116,7 +116,6 @@ public class Preferences {
116
116
JCheckBox exportSeparateBox ;
117
117
JCheckBox verboseCompilationBox ;
118
118
JCheckBox verboseUploadBox ;
119
- JCheckBox deletePreviousBox ;
120
119
JCheckBox externalEditorBox ;
121
120
JCheckBox memoryOverrideBox ;
122
121
JTextField memoryField ;
@@ -302,17 +301,6 @@ public void actionPerformed(ActionEvent e) {
302
301
top += d .height + GUI_BETWEEN ;
303
302
304
303
305
- // [ ] Delete previous applet or application folder on export
306
-
307
- deletePreviousBox =
308
- new JCheckBox (_ ("Delete previous applet or application folder on export" ));
309
- pain .add (deletePreviousBox );
310
- d = deletePreviousBox .getPreferredSize ();
311
- deletePreviousBox .setBounds (left , top , d .width + 10 , d .height );
312
- right = Math .max (right , left + d .width );
313
- top += d .height + GUI_BETWEEN ;
314
-
315
-
316
304
// [ ] Use external editor
317
305
318
306
externalEditorBox = new JCheckBox (_ ("Use external editor" ));
@@ -494,8 +482,6 @@ protected void applyFrame() {
494
482
// put each of the settings into the table
495
483
setBoolean ("build.verbose" , verboseCompilationBox .isSelected ());
496
484
setBoolean ("upload.verbose" , verboseUploadBox .isSelected ());
497
- setBoolean ("export.delete_target_folder" ,
498
- deletePreviousBox .isSelected ());
499
485
500
486
// setBoolean("sketchbook.closing_last_window_quits",
501
487
// closingLastQuitsBox.isSelected());
@@ -553,8 +539,6 @@ protected void showFrame(Editor editor) {
553
539
// set all settings entry boxes to their actual status
554
540
verboseCompilationBox .setSelected (getBoolean ("build.verbose" ));
555
541
verboseUploadBox .setSelected (getBoolean ("upload.verbose" ));
556
- deletePreviousBox .
557
- setSelected (getBoolean ("export.delete_target_folder" ));
558
542
559
543
//closingLastQuitsBox.
560
544
// setSelected(getBoolean("sketchbook.closing_last_window_quits"));
0 commit comments