Skip to content

Commit

Permalink
fix visual glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
neophob committed Sep 20, 2012
1 parent 029d950 commit c19f451
Showing 1 changed file with 1 addition and 7 deletions.
Expand Up @@ -130,7 +130,7 @@ public GeneratorGui(int x, int y, int targetXSize, int targetYSize) {
this.windowHeight = y+SELECTED_MARKER+100;
this.targetXSize = targetXSize;
this.targetYSize = targetYSize;
this.p5GuiYOffset = targetYSize + 80;
this.p5GuiYOffset = targetYSize + 100;

LOG.log(Level.INFO, "Create GUI Window with size "+windowWidth+"/"+windowHeight);
}
Expand All @@ -156,12 +156,6 @@ public void setup() {
background(0,0,0);
int i=0;

/* System.out.println("NAME:"+this.getName());
System.out.println("HEIGHT:"+this.getHeight());
System.out.println("SIZE:"+this.getSize());
System.out.println("INFO:"+this.getAppletInfo());
System.out.println("PRNT:"+this.getParent());*/

cp5 = new ControlP5(this);
cp5.setAutoDraw(false);
cp5.getTooltip().setDelay(200);
Expand Down

0 comments on commit c19f451

Please sign in to comment.