From 77d193cdd127714ce4eab73d7a11a155655b7678 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Fri, 22 May 2026 19:19:14 -0400 Subject: fix elements getting clipped with size <0 --- teensy/teensy_math.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'teensy/teensy_math.c') diff --git a/teensy/teensy_math.c b/teensy/teensy_math.c index 9247bd0..18e95f4 100644 --- a/teensy/teensy_math.c +++ b/teensy/teensy_math.c @@ -24,7 +24,9 @@ ty_Recti ty_recti_shrink(ty_Recti rect, int p) rect.x += p; rect.y += p; rect.w -= p * 2; + rect.w = ty_max(rect.w, 0); rect.h -= p * 2; + rect.h = ty_max(rect.h, 0); return rect; } -- cgit v1.3-2-g0d8e