From 1307ff446f3313b92da1065cb47c35e7070c02ee Mon Sep 17 00:00:00 2001 From: benfry Date: Tue, 19 Nov 2002 20:19:29 +0000 Subject: [PATCH] working on macosx java resize bug --- processing/app/PdeBase.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/processing/app/PdeBase.java b/processing/app/PdeBase.java index 4d56169b0..49b349ba9 100644 --- a/processing/app/PdeBase.java +++ b/processing/app/PdeBase.java @@ -130,6 +130,12 @@ public class PdeBase extends Frame implements ActionListener { frame = this; // clean this up later //#ifdef JDK14 + this.addComponentListener(new ComponentAdapter() { + public void componentResized(ComponentEvent e) { + System.out.println(e); + } + }); + //#endif try {