Skip to content

Commit 387bdcd

Browse files
committed
Update FilterUI and ConsoleLog popups to be not resizable
1 parent 5547183 commit 387bdcd

2 files changed

Lines changed: 140 additions & 117 deletions

File tree

OpenBCI_GUI/ConsoleLog.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static class ConsoleWindow extends PApplet implements Runnable {
2525

2626
private final int headerHeight = 42;
2727
private final int defaultWidth = 620;
28-
private final int defaultHeight = 500;
28+
private final int defaultHeight = 620;
2929
private final int buttonWidth = 142;
3030
private final int buttonHeight = 34;
3131

@@ -61,7 +61,7 @@ static class ConsoleWindow extends PApplet implements Runnable {
6161
logApplet = this;
6262

6363
surface.setAlwaysOnTop(false);
64-
surface.setResizable(true);
64+
surface.setResizable(false);
6565

6666
Frame frame = ( (PSurfaceAWT.SmoothCanvas) ((PSurfaceAWT)surface).getNative()).getFrame();
6767
frame.toFront();

0 commit comments

Comments
 (0)