Clippy
All checks were successful
CI / lint (push) Successful in 1m56s
CI / Build and test (, beta) (push) Successful in 4m15s
CI / Build and test (, 1.73.0) (push) Successful in 4m27s
CI / Build and test (, nightly) (push) Successful in 5m5s

This commit is contained in:
2023-11-18 19:00:34 +01:00
parent dd9028cbb2
commit 9c9f21bc82

View File

@ -127,7 +127,7 @@ impl Component for Buflist {
let area = inner_area;
self.last_area = Some(area);
self.last_num_buffers = buffers.len().try_into().ok();
self.last_num_buffers = Some(buffers.len());
let num_digits = u32::min(5, buffers.len().ilog10() + 1) as usize;
let right_pad = " ".repeat(area.width.into());