mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-15 07:39:00 -04:00
Finally! Fix window size for Minecraft 1.2.1-1.2.4
This commit is contained in:
parent
ef9d5e347c
commit
4c435228cc
@ -178,27 +178,27 @@ public class AWTGLCanvas extends Canvas implements Drawable, ComponentListener,
|
||||
}
|
||||
|
||||
public void setLocation(int x, int y) {
|
||||
|
||||
super.setLocation(x, y);
|
||||
}
|
||||
|
||||
public void setLocation(Point p) {
|
||||
|
||||
super.setLocation(p);
|
||||
}
|
||||
|
||||
public void setSize(Dimension d) {
|
||||
|
||||
super.setSize(d);
|
||||
}
|
||||
|
||||
public void setSize(int width, int height) {
|
||||
|
||||
super.setSize(width, height);
|
||||
}
|
||||
|
||||
public void setBounds(int x, int y, int width, int height) {
|
||||
|
||||
super.setBounds(x, y, width, height);
|
||||
}
|
||||
|
||||
public void hierarchyChanged(HierarchyEvent e) {
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user