diff options
| author | Mason Reed <mason@vector35.com> | 2024-11-04 01:39:55 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-11-04 01:39:55 -0500 |
| commit | 393c7fb508b465b0cb096d46eaaefc08030e9fed (patch) | |
| tree | 1b3e3c3c47af1172707366f423c6f7e21da8d6a5 /plugins/warp/src/plugin/workflow.rs | |
| parent | e6a0cb470745e09721f28ba2ad62f5ea71d63599 (diff) | |
WARP: Fix analysis updates not being correctly marked
We are running at the end of analysis now so we must invoke reanalysis
Diffstat (limited to 'plugins/warp/src/plugin/workflow.rs')
| -rw-r--r-- | plugins/warp/src/plugin/workflow.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/warp/src/plugin/workflow.rs b/plugins/warp/src/plugin/workflow.rs index bea5326e..d3c75876 100644 --- a/plugins/warp/src/plugin/workflow.rs +++ b/plugins/warp/src/plugin/workflow.rs @@ -63,6 +63,8 @@ pub fn insert_workflow() { .for_each(|function| cached_function_matcher(&function)); log::info!("Function matching took {:?}", start.elapsed()); background_task.finish(); + // Now we want to trigger re-analysis. + view.update_analysis(); }; let guid_activity = |ctx: &AnalysisContext| { |
