1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Correct origin.y minification.

This commit is contained in:
Thomas Harte
2025-10-07 12:44:03 -04:00
parent 53a3d9042e
commit 2f1f843e48
+1 -1
View File
@@ -43,7 +43,7 @@ struct Rect {
origin.x = std::min(origin.x, min_x);
size.width = std::max(size.width, max_x - origin.x);
origin.y = std::min(origin.x, min_y);
origin.y = std::min(origin.y, min_y);
size.height = std::max(size.height, max_y - origin.y);
}