From ae61b1c4b1ecafb3c09dab934cb03cdb59583fc8 Mon Sep 17 00:00:00 2001 From: Braden Mars Date: Thu, 8 Jul 2021 23:30:37 -0500 Subject: [PATCH] fix(attachments): utilize font parameter in atext --- attachments.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attachments.scad b/attachments.scad index e145815..49e1da2 100644 --- a/attachments.scad +++ b/attachments.scad @@ -1162,11 +1162,11 @@ module atext(text, h=1, size=9, font="Courier", anchor="baseline", spin=0, orien if (do_show) { if (is_undef($color)) { linear_extrude(height=h, center=true) - text(text=text, size=size, halign=ha, valign=va); + text(text=text, size=size, halign=ha, valign=va, font=font); } else color($color) { $color = undef; linear_extrude(height=h, center=true) - text(text=text, size=size, halign=ha, valign=va); + text(text=text, size=size, halign=ha, valign=va, font=font); } } }