mirror of
https://github.com/processing/processing4.git
synced 2026-02-10 00:59:40 +01:00
console clearing stuff patched over from 68
This commit is contained in:
@@ -933,9 +933,14 @@ public class PdeEditor extends JFrame
|
||||
running = true;
|
||||
buttons.run();
|
||||
|
||||
// spew some blank lines so it's clear what's new on the console
|
||||
// do this for the terminal window / dos prompt / etc
|
||||
for (int i = 0; i < 10; i++) System.out.println();
|
||||
|
||||
// clear the console on each run, unless the user doesn't want to
|
||||
if (PdeBase.getBoolean("console.auto_clear", true)) {
|
||||
console.clear();
|
||||
}
|
||||
|
||||
presenting = present;
|
||||
if (presenting) {
|
||||
// wipe everything out with a bulbous screen-covering window
|
||||
|
||||
Reference in New Issue
Block a user