feat: remove left padding when limiting points

This commit is contained in:
əlemi 2022-06-13 03:00:12 +02:00
parent a75d6b432f
commit 5d3f5478cd
No known key found for this signature in database
GPG key ID: BBCBFE5D7244634E

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))