Merge pull request #861 from gianlucafiore/fix/ltscale-current-value

fix(ltscale): show current value before prompt
This commit is contained in:
gianlucafiore 2026-08-22 17:24:48 -03:00 committed by GitHub
commit 43c150199e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2134,7 +2134,17 @@ impl OpenCADStudio {
}
"LTSCALE" => {
use crate::command::ValuePromptCommand;
let c = ValuePromptCommand::new("LTSCALE", "LTSCALE new global line-type scale:");
let current = self.tabs[i].scene.document.header.linetype_scale;
self.command_line
.push_output(crate::tf!("LTSCALE = {current:.4}").as_ref());
let c = ValuePromptCommand::new(
"LTSCALE",
"LTSCALE new global line-type scale:",
);
self.command_line.push_info(&c.prompt());
self.tabs[i].active_cmd = Some(Box::new(c));
}