mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
remove debug messages
This commit is contained in:
@@ -230,8 +230,8 @@ public class PSurfaceAWT extends PSurfaceNone {
|
||||
*/
|
||||
|
||||
|
||||
protected synchronized void render() {
|
||||
//System.out.println("render() top");
|
||||
synchronized protected void render() {
|
||||
// System.out.println("render() top");
|
||||
|
||||
/*
|
||||
if (!EventQueue.isDispatchThread()) {
|
||||
@@ -765,7 +765,7 @@ public class PSurfaceAWT extends PSurfaceNone {
|
||||
// If displayable() is false, then PSurfaceNone should be used, but...
|
||||
if (sketch.getGraphics().displayable()) {
|
||||
frame.setVisible(true);
|
||||
System.out.println("setting visible on EDT? " + EventQueue.isDispatchThread());
|
||||
// System.out.println("setting visible on EDT? " + EventQueue.isDispatchThread());
|
||||
//requestFocus();
|
||||
if (canvas != null) {
|
||||
//canvas.requestFocusInWindow();
|
||||
@@ -1286,13 +1286,11 @@ public class PSurfaceAWT extends PSurfaceNone {
|
||||
canvas.addFocusListener(new FocusListener() {
|
||||
|
||||
public void focusGained(FocusEvent e) {
|
||||
System.out.println(e);
|
||||
sketch.focused = true;
|
||||
sketch.focusGained();
|
||||
}
|
||||
|
||||
public void focusLost(FocusEvent e) {
|
||||
System.out.println(e);
|
||||
sketch.focused = false;
|
||||
sketch.focusLost();
|
||||
}
|
||||
|
||||
@@ -58,6 +58,10 @@ _ no setting breakpoints when debugger is off
|
||||
_ https://github.com/processing/processing/issues/3306
|
||||
_ make breakpoints more prominent
|
||||
_ https://github.com/processing/processing/issues/3307
|
||||
_ import suggestions box needs design review
|
||||
_ https://github.com/processing/processing/issues/3407
|
||||
_ distinguish errors and warnings
|
||||
_ https://github.com/processing/processing/issues/3406
|
||||
_ finish the gui
|
||||
_ https://github.com/processing/processing/issues/3072
|
||||
_ mouse events (i.e. toggle breakpoint) seem to be firing twice
|
||||
|
||||
Reference in New Issue
Block a user