Don't ResetBounds when setDay is called to avoid changing overview graphs to full date range on BMI/Weight change

This commit is contained in:
kappa44 2021-03-28 14:20:19 +11:00
parent 37483de62a
commit 2331bbba26

View File

@ -275,7 +275,9 @@ void gGraph::setDay(Day *day)
}
rmin_y = rmax_y = 0;
ResetBounds();
// This resets weight and bmi overview graphs to full date range when they are changed.
// is it required ever?
// ResetBounds();
}
void gGraph::setZoomY(short zoom)