1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Code folding is disabled by default. Fixes #3105

This commit is contained in:
Federico Fissore
2015-05-07 20:40:50 +02:00
parent 5bc6cee118
commit f17cc834cf
2 changed files with 2 additions and 2 deletions

View File

@ -961,7 +961,7 @@ public class Editor extends JFrame implements RunnerListener {
textArea.requestFocusInWindow();
textArea.setMarkOccurrences(true);
textArea.setMarginLineEnabled(false);
textArea.setCodeFoldingEnabled(PreferencesData.getBoolean("editor.codefolding"));
textArea.setCodeFoldingEnabled(PreferencesData.getBoolean("editor.code_folding"));
textArea.setAntiAliasingEnabled(PreferencesData.getBoolean("editor.antialias"));
textArea.setTabsEmulated(PreferencesData.getBoolean("editor.tabs.expand"));
textArea.setTabSize(PreferencesData.getInteger("editor.tabs.size"));