chore: update deps

This commit is contained in:
2025-10-07 14:45:44 +07:00
parent 6e7f63d79a
commit b7693444e6
11 changed files with 599 additions and 474 deletions

View File

@@ -247,7 +247,7 @@ impl ResizablePanelGroup {
}
// If total size exceeds container size, adjust the main panel
let total_size: Pixels = new_sizes.iter().map(|s| s.0).sum::<f32>().into();
let total_size: Pixels = new_sizes.iter().map(|s| s.signum()).sum::<f32>().into();
if total_size > container_size {
let overflow = total_size - container_size;
new_sizes[main_ix] = (new_sizes[main_ix] - overflow).max(PANEL_MIN_SIZE);