Fix refucktoring regression

This commit is contained in:
Elias Batek 2024-10-06 01:43:20 +02:00
parent 9418cbaa24
commit 33cd84552b
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ struct SubPixmap {
(`Point(O, 0)` is the top left corner of the source image.)
+/
Point sourceOffsetEnd() const {
auto vec = Point(size.x, (size.y - 1));
auto vec = Point(size.width, (size.height - 1));
return (offset + vec);
}