Skip to content

Commit fee9640

Browse files
committed
Change first choice (default) of drop-down to LittleFS
1 parent b51ef07 commit fee9640

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ESP32FS.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -409,15 +409,15 @@ private void createAndUpload(){
409409

410410
public void run() {
411411
String sketchName = editor.getSketch().getName();
412-
Object[] options = { "SPIFFS", "LittleFS", "FatFS" };
412+
Object[] options = { "LittleFS", "SPIFFS", "FatFS" };
413413
typefs = (String)JOptionPane.showInputDialog(editor,
414414
"Select FS for " + sketchName +
415415
" /data folder",
416416
"Filesystem",
417417
JOptionPane.PLAIN_MESSAGE,
418418
null,
419419
options,
420-
"SPIFFS");
420+
"LittleFS");
421421
if ((typefs != null) && (typefs.length() > 0)) {
422422
createAndUpload();
423423
} else {

0 commit comments

Comments
 (0)