You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix frame view cellpicker `scroll_rect` height
I'm not sure why egui is setting the height of `scroll_rect`
incorrectly, but since we know what the height of the cellpicker should
be we can easily fix this.
Replace `frame.cell_data.xsize()` with `frame.len()`
The `.xsize()` of `frame.cell_data` doesn't always correspond to the
maximum cell number in a frame because of how the frame resizing
function defined in crates/ui/src/windows/animations/util.rs works.
So for all the code that was incorrectly assuming `.xsize()` was related
to the maximum cell number, I replaced the `.cell_data.xsize()` with a
new `.len()` method that more accurately determines the correct value.
Update `time` to 0.3.36
This fixes compiler errors when using very new Rust versions starting
from around May 2024.
(cherry picked from commit 9fd85e5)