Skip to content

Commit 11db063

Browse files
committed
almost 2
1 parent 0b337bf commit 11db063

File tree

1 file changed

+2
-2
lines changed
  • crates/viewer/re_viewer/src

1 file changed

+2
-2
lines changed

crates/viewer/re_viewer/src/app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2077,7 +2077,7 @@ impl eframe::App for App {
20772077

20782078
{
20792079
let (storage_context, entry_context) = store_hub.read_context();
2080-
let store_context = entry_context.and_then(|e| e.recording());
2080+
let store_context = entry_context.as_ref().and_then(|e| e.recording());
20812081

20822082
let blueprint_query =
20832083
store_context.map_or(BlueprintUndoState::default_query(), |store_context| {
@@ -2098,7 +2098,7 @@ impl eframe::App for App {
20982098
frame,
20992099
&app_blueprint,
21002100
&gpu_resource_stats,
2101-
entry_context,
2101+
entry_context.as_ref(),
21022102
&storage_context,
21032103
store_stats.as_ref(),
21042104
);

0 commit comments

Comments
 (0)