mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-28 13:28:50 +03:00
Fix 6-hour speedplot point push rate. Close #5545
This commit is contained in:
parent
d3ece7417d
commit
76580e4766
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ void SpeedPlotView::setGraphEnable(GraphID id, bool enable)
|
|||
void SpeedPlotView::pushPoint(SpeedPlotView::PointData point)
|
||||
{
|
||||
m_counter30Min = (m_counter30Min + 1) % 3;
|
||||
m_counter6Hour = (m_counter6Hour + 1) % 6;
|
||||
m_counter6Hour = (m_counter6Hour + 1) % 18;
|
||||
|
||||
m_data5Min.push_back(point);
|
||||
|
||||
|
@ -131,7 +131,7 @@ void SpeedPlotView::replot()
|
|||
if ((m_period == MIN1)
|
||||
|| (m_period == MIN5)
|
||||
|| ((m_period == MIN30) && (m_counter30Min == 2))
|
||||
|| ((m_period == HOUR6) && (m_counter6Hour == 5)))
|
||||
|| ((m_period == HOUR6) && (m_counter6Hour == 17)))
|
||||
viewport()->update();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue