This commit is contained in:
i do not exist 2026-04-17 04:18:25 +03:00
parent 5ffa9472e1
commit 89df3cf191
7 changed files with 164 additions and 95 deletions

View file

@ -631,7 +631,7 @@ fn draw_viewer (sample: Option<&Arc<RwLock<Sample>>>) -> impl Draw<Tui> + use<'_
//height as f64 / 2.0,
//text.red()
//);
}).render(area, &mut to.buffer);
}).render(area, &mut to.1);
} else {
Canvas::default()
.x_bounds([0.0, width as f64])
@ -644,7 +644,7 @@ fn draw_viewer (sample: Option<&Arc<RwLock<Sample>>>) -> impl Draw<Tui> + use<'_
//text.red()
//);
})
.render(area, &mut to.buffer);
.render(area, &mut to.1);
}
})
}