smaller threshold for minimum polygon size drawing

This commit is contained in:
Stefan Frederik 2022-02-19 03:59:00 +01:00
parent 492dd756ed
commit 414cba1623
1 changed files with 1 additions and 1 deletions

View File

@ -1336,7 +1336,7 @@ void drawpolygon(int c, int what, double *x, double *y, int points, int poly_fil
if( !rectclip(xctx->areax1,xctx->areay1,xctx->areax2,xctx->areay2,&x1,&y1,&x2,&y2) ) {
return;
}
if( !xctx->only_probes && (x2-x1)<3.0 && (y2-y1)<3.0) return;
if( !xctx->only_probes && (x2-x1)<1.0 && (y2-y1)<1.0) return;
p = my_malloc(38, sizeof(XPoint) * points);
if(what) {