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 7438440 commit d5a73dcCopy full SHA for d5a73dc
arduino-core/src/processing/app/SketchFile.java
@@ -206,7 +206,7 @@ public String getFileName() {
206
* others.
207
*/
208
public String getPrettyName() {
209
- if (isExtension(Sketch.SKETCH_EXTENSIONS))
+ if (!PreferencesData.getBoolean("editor.show_always_extensions") && isExtension(Sketch.SKETCH_EXTENSIONS))
210
return getBaseName();
211
else
212
return getFileName();
0 commit comments