Merge pull request #127 from smkent/tab-fillet-cutter-no-tabs

Skip tab fillet cutter if tabs are disabled
This commit is contained in:
Ruud 2023-10-25 15:19:05 +02:00 committed by GitHub
commit 003a6296b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ module block_cutter(x,y,w,h,t,s) {
translate([0,ylen/2,h_base+h_bot])
rotate([90,0,-90]) {
if (!zsmall && xlen - d_tabw > 4*r_f2 && t != 0) {
if (!zsmall && xlen - d_tabw > 4*r_f2 && (t != 0 && t != 5)) {
fillet_cutter(3,"bisque")
difference() {
transform_tab(style, xlen, ((xcutfirst&&style==-1)||(xcutlast&&style==1))?v_cut_lip:0)