Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Takaranoao committed Dec 19, 2018
1 parent fd5cb30 commit 64b7a1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/gmail/zendarva/aei/gui/widget/Control.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public void setEnabled(boolean enabled) {
}

public void move(int x, int y){
rect.x=x;
rect.y=y;
rect.x+=x;
rect.y+=y;
//rect.move(x+rect.x,rect.y+y);//Why the fuck?
}

Expand Down

0 comments on commit 64b7a1c

Please sign in to comment.