Skip to content

Commit

Permalink
fix: add an extra row
Browse files Browse the repository at this point in the history
  • Loading branch information
polyesterswing committed Dec 29, 2024
1 parent fc3924e commit 3723b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fn main() -> Result<()> {
imgproc::resize(
&frame,
&mut smaller,
core::Size::new(term_size.0.into(), (term_size.1 - 2).into()),
core::Size::new(term_size.0.into(), (term_size.1 - 1).into()),
0.0,
0.0,
imgproc::INTER_AREA,
Expand Down

0 comments on commit 3723b1f

Please sign in to comment.