something something ui

This commit is contained in:
2023-02-05 02:56:04 +01:00
parent 3e7d993662
commit a4e4e103bd
8 changed files with 197 additions and 19 deletions

View File

@@ -64,8 +64,8 @@ abstract Canvas(Array<Array<Pixel>>) to Array<Array<Pixel>> from Array<Array<Pix
public function getBounds(): Rect {
return new Rect({x:0,y:0},{
x: maxWidth(),
y: height()
x: maxWidth() - 1,
y: height() - 1
});
}