Browse Source

Fix speed graph "high speeds" bug

adaptive-webui-19844
dzmat 6 years ago committed by Vladimir Golovnev (Glassez)
parent
commit
6fa64c81b7
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7
  1. 2
      src/gui/properties/speedplotview.cpp

2
src/gui/properties/speedplotview.cpp

@ -321,7 +321,7 @@ void SpeedPlotView::paintEvent(QPaintEvent *) @@ -321,7 +321,7 @@ void SpeedPlotView::paintEvent(QPaintEvent *)
// draw graphs
rect.adjust(3, 0, 0, 0); // Need, else graphs cross left gridline
const double yMultiplier = (niceScale.arg == 0.0) ? 0.0 : (rect.height() / niceScale.sizeInBytes());
const double yMultiplier = (niceScale.arg == 0.0) ? 0.0 : (static_cast<double>(rect.height()) / niceScale.sizeInBytes());
const double xTickSize = static_cast<double>(rect.width()) / m_viewablePointsCount;
boost::circular_buffer<PointData> &queue = getCurrentData();

Loading…
Cancel
Save