Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions core/src/processing/awt/PSurfaceAWT.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
import java.util.ArrayList;
import java.util.List;

import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.*;

import processing.core.PApplet;
import processing.core.PConstants;
Expand Down Expand Up @@ -1021,6 +1020,9 @@ public void componentResized(ComponentEvent e) {
//sketch.postWindowMoved(x - currentInsets.left, y - currentInsets.top);
sketch.postWindowMoved(x, y); // presumably user wants drawing area
}
}else{
// Solves #862 - Grey/White bar on right side of sketches
setFrameSize();
}
}

Expand Down
Loading