Skip to content

Commit

Permalink
Merge pull request #1396 from hannobraun/nomenclature
Browse files Browse the repository at this point in the history
Change from "compiling" to "evaluating"
  • Loading branch information
hannobraun authored Nov 26, 2022
2 parents 805d1a0 + 10e18de commit 75d1140
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/fj-window/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,13 @@ pub fn run(
match event {
ModelEvent::ChangeDetected => {
status.update_status(
"Change in model detected. Compiling...",
"Change in model detected. Evaluating model...",
);
}
ModelEvent::Evaluation(evaluation) => {
status.update_status("Model compiled. Processing...");
status.update_status(
"Model evaluated. Processing model...",
);

match shape_processor.process(&evaluation.shape) {
Ok(shape) => {
Expand Down

0 comments on commit 75d1140

Please sign in to comment.