Index: trunk/src_plugins/export_stl/stl_models.c =================================================================== --- trunk/src_plugins/export_stl/stl_models.c (revision 35992) +++ trunk/src_plugins/export_stl/stl_models.c (revision 35993) @@ -247,7 +247,7 @@ if (stl_model_print(pcb, outf, maxy, z0, z1, &models, subc, &first, fmt, fmt) != 0) { const stl_fmt_t **n; /* fallback: try all other formats */ for(n = fmt_all; *n != NULL; n++) { - if (*n == fmt) continue; /* already tried */ + if ((*n == fmt) || ((*n)->model_load == NULL)) continue; /* already tried or can't load model */ if (stl_model_print(pcb, outf, maxy, z0, z1, &models, subc, &first, *n, fmt) == 0) { good = 1; break;