feat: remove left padding when limiting points

This commit is contained in:
əlemi 2022-06-13 03:00:12 +02:00
parent 931ceaeb03
commit 747d4cff51
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -299,6 +299,11 @@ impl eframe::App for App {
if panel.view_scroll {
p = p
.include_x(Utc::now().timestamp() as f64);
if panel.limit {
p = p
.set_margin_fraction(eframe::emath::Vec2{x:0.0, y:0.1})
.include_x((Utc::now().timestamp() + ( panel.view_size as i64 * 3)) as f64);
}
if panel.limit {
p = p.include_x(
(Utc::now().timestamp() - (panel.view_size as i64 * 60))