From b6d80ba43630047cdadec6126fe3563b1354459b Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Thu, 1 Feb 2024 17:34:03 +0100 Subject: [PATCH] update caching toggles doc --- crates/re_viewer/src/ui/rerun_menu.rs | 4 ++-- crates/re_viewer_context/src/app_options.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/re_viewer/src/ui/rerun_menu.rs b/crates/re_viewer/src/ui/rerun_menu.rs index 6c124d8ea587..4cf0f6c09b7a 100644 --- a/crates/re_viewer/src/ui/rerun_menu.rs +++ b/crates/re_viewer/src/ui/rerun_menu.rs @@ -392,7 +392,7 @@ 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( @@ -400,7 +400,7 @@ fn experimental_feature_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)] diff --git a/crates/re_viewer_context/src/app_options.rs b/crates/re_viewer_context/src/app_options.rs index da263933a634..799c247431f9 100644 --- a/crates/re_viewer_context/src/app_options.rs +++ b/crates/re_viewer_context/src/app_options.rs @@ -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.