Merge pull request #135 from rsheldiii/force-iso-enter-render

Force ISO enter to render as it does not show in preview
This commit is contained in:
Bob 2022-02-19 21:05:06 -05:00 committed by GitHub
commit 378af54056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View File

@ -928,10 +928,11 @@ module iso_enter() {
// this equals (unit_length(1.5) - unit_length(1.25)) / 2 // this equals (unit_length(1.5) - unit_length(1.25)) / 2
/* $dish_overdraw_width = 2.38125; */ /* $dish_overdraw_width = 2.38125; */
render() {
stabilized(vertical=true) { stabilized(vertical=true) {
children(); children();
} }
}
} }
// kind of a catch-all at this point for any directive that doesn't fit in the other files // kind of a catch-all at this point for any directive that doesn't fit in the other files

View File

@ -55,8 +55,9 @@ module iso_enter() {
// this equals (unit_length(1.5) - unit_length(1.25)) / 2 // this equals (unit_length(1.5) - unit_length(1.25)) / 2
/* $dish_overdraw_width = 2.38125; */ /* $dish_overdraw_width = 2.38125; */
render() {
stabilized(vertical=true) { stabilized(vertical=true) {
children(); children();
} }
}
} }