Skip to content

Commit

Permalink
update caching toggles doc
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Feb 1, 2024
1 parent 0aac1e7 commit b6d80ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/re_viewer/src/ui/rerun_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,15 +392,15 @@ fn experimental_feature_ui(
&mut app_options.experimental_primary_caching_latest_at,
"Primary caching: latest-at queries",
)
.on_hover_text("Toggle primary caching for latest-at queries.\nApplies to the 2D/3D point cloud, text log and time series space views.");
.on_hover_text("Toggle primary caching for latest-at queries.\nApplies to the 2D/3D point cloud, 2D/3D box, text log and time series space views.");

re_ui
.checkbox(
ui,
&mut app_options.experimental_primary_caching_range,
"Primary caching: range queries",
)
.on_hover_text("Toggle primary caching for range queries.\nApplies to the 2D/3D point cloud, text log and time series space views.");
.on_hover_text("Toggle primary caching for range queries.\nApplies to the 2D/3D point cloud, 2D/3D box, text log and time series space views.");
}

#[cfg(debug_assertions)]
Expand Down
4 changes: 2 additions & 2 deletions crates/re_viewer_context/src/app_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ pub struct AppOptions {

/// Toggle primary caching for latest-at queries.
///
/// Applies to the 2D/3D point cloud, text log and time series space views.
/// Applies to the 2D/3D point cloud, 2D/3D box, text log and time series space views.
pub experimental_primary_caching_latest_at: bool,

/// Toggle primary caching for range queries.
///
/// Applies to the 2D/3D point cloud, text log and time series space views.
/// Applies to the 2D/3D point cloud, 2D/3D box, text log and time series space views.
pub experimental_primary_caching_range: bool,

/// Displays an overlay for debugging picking.
Expand Down

0 comments on commit b6d80ba

Please sign in to comment.