We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daefdc9 commit 99fe051Copy full SHA for 99fe051
arduino-core/src/processing/app/PreferencesData.java
@@ -114,6 +114,9 @@ static protected void save() {
114
if (!doSave)
115
return;
116
117
+ if (getBoolean("preferences.readonly"))
118
+ return;
119
+
120
// on startup, don't worry about it
121
// this is trying to update the prefs for who is open
122
// before Preferences.init() has been called.
build/shared/lib/preferences.txt
@@ -279,6 +279,9 @@ serial.line_ending=1
279
# default chosen language (none for none)
280
editor.languages.current =
281
282
+# Disable saving of preferences.txt file (settings will not survive Arduino IDE reboot)
283
+preferences.readonly=false
284
285
# Debugging/Development Preferences
286
# ---------------------------------
287
0 commit comments