fix mesh import: detect_mode misclassified Cordial sch blocks as SCAD due to brace heuristic

This commit is contained in:
jess 2026-03-31 01:27:45 -07:00
parent 582ecf7c42
commit 9b21350c87
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ impl App {
{ {
match ext.to_lowercase().as_str() { match ext.to_lowercase().as_str() {
"scad" => { self.mode = InputMode::Scad; return; } "scad" => { self.mode = InputMode::Scad; return; }
"crd" => { self.mode = InputMode::Expr; return; } "crd" | "obj" | "stl" | "3mf" => { self.mode = InputMode::Expr; return; }
_ => {} _ => {}
} }
} }