Remove scroll bar print

This commit is contained in:
Jeremy Soller 2022-10-12 15:41:42 -06:00
parent 6280665bd2
commit f396709ec9
No known key found for this signature in database
GPG key ID: 87F211AF2BE4C2FE

View file

@ -237,7 +237,6 @@ fn main() {
{
let start_line = start_line_opt.unwrap_or(end_line);
let lines = buffer.text_lines().len();
println!("{},{}/{}", start_line.get(), end_line.get(), lines);
let start_y = (start_line.get() * window.height() as usize) / lines;
let end_y = (end_line.get() * window.height() as usize) / lines;
if end_y > start_y {