Skip to content

Commit e1140bf

Browse files
authored
Fix time series marker sizes not being able to vary over time (#9035)
Small bug I found while adding tests. With this fix, you can change the size of a point in a point series over time ![image](https://github.com/user-attachments/assets/fa4843ac-22a0-4974-8639-2a8608d380b3)
1 parent 47328dc commit e1140bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/viewer/re_view_time_series/src/point_visualizer_system.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ impl SeriesPointSystem {
377377
itertools::izip!(
378378
chunk
379379
.iter_component_indices(&query.timeline(), &MarkerSize::name()),
380-
chunk.iter_slices::<f32>(Color::name())
380+
chunk.iter_slices::<f32>(MarkerSize::name())
381381
)
382382
});
383383

0 commit comments

Comments
 (0)