Fix `cargo clippy` error

pull/13430/head
Em Zhan 2025-06-09 23:35:08 -05:00
parent 009024a720
commit 9c0f960ad4
1 changed files with 1 additions and 1 deletions

View File

@ -1186,7 +1186,7 @@ impl<T: 'static + Send + Sync, D> Picker<T, D> {
&& area.width >= MIN_AREA_WIDTH_FOR_PREVIEW
&& area.height >= MIN_AREA_HEIGHT_FOR_PREVIEW;
let stack_vertically = area.width / 2 < MIN_AREA_WIDTH_FOR_PREVIEW;
return (render_preview, stack_vertically);
(render_preview, stack_vertically)
}
}