From 397a3b84fc10218c0cec25c0ebb9c376ddb3db7d Mon Sep 17 00:00:00 2001 From: Bob Date: Sat, 19 Feb 2022 21:01:19 -0500 Subject: [PATCH] force ISO enter to render as it does not show in preview --- customizer.scad | 7 ++++--- src/key_types.scad | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/customizer.scad b/customizer.scad index 00adca7..0774315 100644 --- a/customizer.scad +++ b/customizer.scad @@ -928,9 +928,10 @@ module iso_enter() { // this equals (unit_length(1.5) - unit_length(1.25)) / 2 /* $dish_overdraw_width = 2.38125; */ - - stabilized(vertical=true) { - children(); + render() { + stabilized(vertical=true) { + children(); + } } } // kind of a catch-all at this point for any directive that doesn't fit in the other files diff --git a/src/key_types.scad b/src/key_types.scad index 1163827..dc41643 100644 --- a/src/key_types.scad +++ b/src/key_types.scad @@ -55,8 +55,9 @@ module iso_enter() { // this equals (unit_length(1.5) - unit_length(1.25)) / 2 /* $dish_overdraw_width = 2.38125; */ - - stabilized(vertical=true) { - children(); + render() { + stabilized(vertical=true) { + children(); + } } }