re-enable rounded keys, they sometimes work now

This commit is contained in:
Bob 2022-02-19 16:02:49 -05:00
parent b36bf13b3e
commit 3675509456
1 changed files with 5 additions and 1 deletions

View File

@ -155,7 +155,11 @@ module front_of_key() {
} }
module outer_shape() { module outer_shape() {
shape(0, 0); if ($rounded_key == true) {
rounded_shape();
} else {
shape(0, 0);
}
} }
module inner_shape(extra_wall_thickness = 0, extra_keytop_thickness = 0) { module inner_shape(extra_wall_thickness = 0, extra_keytop_thickness = 0) {