mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
Code folding is disabled by default. Fixes #3105
This commit is contained in:
parent
5bc6cee118
commit
f17cc834cf
@ -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"));
|
||||
|
@ -87,7 +87,7 @@ editor.window.height.min = 290
|
||||
#editor.window.height.min.windows = 530
|
||||
|
||||
# Enable code folding
|
||||
editor.code_folding=true
|
||||
editor.code_folding=false
|
||||
|
||||
# font size for editor
|
||||
editor.font=Monospaced,plain,12
|
||||
|
Loading…
x
Reference in New Issue
Block a user