1
0
Fork 0
mirror of https://github.com/rsheldiii/KeyV2.git synced 2025-03-16 03:16:26 +00:00

backport stem slop fix

This commit is contained in:
Bob 2022-02-19 20:03:54 -05:00
parent a1ec4c3cac
commit 160c47150d
2 changed files with 16 additions and 16 deletions

View file

@ -941,26 +941,26 @@ module blank() {
children();
}
module cherry(slop) {
$stem_slop = slop ? slop : $stem_slop;
module cherry(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "cherry";
children();
}
module alps(slop) {
$stem_slop = slop ? slop : $stem_slop;
module alps(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "alps";
children();
}
module rounded_cherry(slop) {
$stem_slop = slop ? slop : $stem_slop;
module rounded_cherry(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "rounded_cherry";
children();
}
module box_cherry(slop) {
$stem_slop = slop ? slop : $stem_slop;
module box_cherry(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "box_cherry";
children();
}

View file

@ -92,26 +92,26 @@ module blank() {
children();
}
module cherry(slop) {
$stem_slop = slop ? slop : $stem_slop;
module cherry(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "cherry";
children();
}
module alps(slop) {
$stem_slop = slop ? slop : $stem_slop;
module alps(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "alps";
children();
}
module rounded_cherry(slop) {
$stem_slop = slop ? slop : $stem_slop;
module rounded_cherry(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "rounded_cherry";
children();
}
module box_cherry(slop) {
$stem_slop = slop ? slop : $stem_slop;
module box_cherry(slop = undef) {
$stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "box_cherry";
children();
}