Skip to content

Commit 75667ce

Browse files
authored
Fix time series points querying extra points at start and end of time range (causing stuttering on playback in some scenes) (#9963)
1 parent 7330bcc commit 75667ce

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crates/viewer/re_view_time_series/src/point_visualizer_system.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,7 @@ impl SeriesPointsSystem {
190190
re_tracing::profile_scope!("primary", &data_result.entity_path.to_string());
191191

192192
let entity_path = &data_result.entity_path;
193-
let query = re_chunk_store::RangeQuery::new(view_query.timeline, time_range)
194-
// We must fetch data with extended bounds, otherwise the query clamping would
195-
// cut-off the data early at the edge of the view.
196-
.include_extended_bounds(true);
193+
let query = re_chunk_store::RangeQuery::new(view_query.timeline, time_range);
197194

198195
let results = range_with_blueprint_resolved_data(
199196
ctx,

0 commit comments

Comments
 (0)