Skip to content

Commit edc12c4

Browse files
committed
Fixed get image part
1 parent 8199141 commit edc12c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Contents/Source/PolyImage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,5 +777,5 @@ void Image::transformCoordinates(int *x, int *y) {
777777
}
778778

779779
void Image::transformCoordinates(int *x, int *y, int *w, int *h) {
780-
*y = this->height - *h - *y - 1;
780+
*y = this->height - *h - *y;
781781
}

0 commit comments

Comments
 (0)