Skip to content

Commit

Permalink
Change first choice (default) of drop-down to LittleFS
Browse files Browse the repository at this point in the history
  • Loading branch information
lorol committed Jul 31, 2020
1 parent b51ef07 commit fee9640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ESP32FS.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,15 +409,15 @@ private void createAndUpload(){

public void run() {
String sketchName = editor.getSketch().getName();
Object[] options = { "SPIFFS", "LittleFS", "FatFS" };
Object[] options = { "LittleFS", "SPIFFS", "FatFS" };
typefs = (String)JOptionPane.showInputDialog(editor,
"Select FS for " + sketchName +
" /data folder",
"Filesystem",
JOptionPane.PLAIN_MESSAGE,
null,
options,
"SPIFFS");
"LittleFS");
if ((typefs != null) && (typefs.length() > 0)) {
createAndUpload();
} else {
Expand Down

0 comments on commit fee9640

Please sign in to comment.