From aaa24d7f98be47727563e61c0bc23a81fba7f251 Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.com> Date: Fri, 12 Dec 2025 23:31:14 +0100 Subject: [PATCH] findFont: fix missing comma in example object --- libs/graphics/jswrap_graphics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/graphics/jswrap_graphics.c b/libs/graphics/jswrap_graphics.c index 87530ecf8..852e39626 100644 --- a/libs/graphics/jswrap_graphics.c +++ b/libs/graphics/jswrap_graphics.c @@ -2638,7 +2638,7 @@ g.findFont("Hello World", { h : 100, // optional: height available (default = screen height) min : 10, // optional: min font height max : 30, // optional: max font height - wrap : true // optional: allow word wrap? + wrap : true, // optional: allow word wrap? trim : true // optional: trim to the specified height, add '...' }); ```