diff --git a/app/src/processing/app/ui/EditorConsole.java b/app/src/processing/app/ui/EditorConsole.java index d27d17d05..fcc86fa48 100644 --- a/app/src/processing/app/ui/EditorConsole.java +++ b/app/src/processing/app/ui/EditorConsole.java @@ -69,8 +69,8 @@ public class EditorConsole extends JScrollPane { public EditorConsole(Editor editor) { this.editor = editor; - maxLineCount = Preferences.getInteger("console.lines"); - maxCharCount = Preferences.getInteger("console.chars"); + maxLineCount = Preferences.getInteger("console.scrollback.lines"); + maxCharCount = Preferences.getInteger("console.scrollback.chars"); consoleDoc = new BufferedStyledDocument(10000, maxLineCount, maxCharCount); consoleTextPane = new JTextPane(consoleDoc); diff --git a/build/shared/lib/defaults.txt b/build/shared/lib/defaults.txt index c9c819678..f707762fa 100644 --- a/build/shared/lib/defaults.txt +++ b/build/shared/lib/defaults.txt @@ -182,8 +182,8 @@ console.auto_clear = true # set the maximum number of lines remembered by the console # the default is 500, lengthen at your own peril -console.lines = 500 -console.chars = 40000 +console.scrollback.lines = 500 +console.scrollback.chars = 40000 # Any additional Java options when running. # If you change this and can't run things, it's your own durn fault. diff --git a/todo.txt b/todo.txt index 426cea241..7ea239fc7 100755 --- a/todo.txt +++ b/todo.txt @@ -10,6 +10,9 @@ _ https://github.com/processing/processing/issues/5111 _ display=-1 regression? ("could not parse" message) _ https://github.com/processing/processing/issues/5118 +_ detect errors from curved quotation marks +_ https://github.com/processing/processing/issues/5133 + contrib _ console hiding button? _ https://github.com/processing/processing/pull/5115