We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009e9e0 commit c62137bCopy full SHA for c62137b
crates/viewer/re_data_ui/src/transform_frames.rs
@@ -74,8 +74,9 @@ impl TransformFramesUi {
74
let mut frame_id_hash = TransformFrameIdHash::new(&frame_id);
75
76
let caches = ctx.store_context.caches;
77
- let transform_cache = caches
78
- .entry(|c: &mut TransformDatabaseStoreCache| c.lock_transform_cache(ctx.recording()));
+ let transform_cache = caches.entry(|c: &mut TransformDatabaseStoreCache| {
+ c.read_lock_transform_cache(ctx.recording())
79
+ });
80
81
let frame_ids = transform_cache.frame_id_registry();
82
let transforms = transform_cache.transforms_for_timeline(*ctx.time_ctrl.timeline().name());
0 commit comments