Skip to content

Commit

Permalink
Fix time series marker sizes not being able to vary over time (#9035)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
Wumpf authored Feb 14, 2025
1 parent 47328dc commit e1140bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl SeriesPointSystem {
itertools::izip!(
chunk
.iter_component_indices(&query.timeline(), &MarkerSize::name()),
chunk.iter_slices::<f32>(Color::name())
chunk.iter_slices::<f32>(MarkerSize::name())
)
});

Expand Down

0 comments on commit e1140bf

Please sign in to comment.