mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
Don't allow speed plot buffer to overflow
This commit is contained in:
parent
0bf36ad031
commit
20e9952d98
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ bool SpeedPlotView::Averager::push(const SampleData &sampleData)
|
|||
// once we go above the max duration never go below that
|
||||
// otherwise it will cause empty space in graphs
|
||||
while (!m_sink.empty()
|
||||
&& ((m_currentDuration - m_sink.front().duration) > m_maxDuration))
|
||||
&& ((m_currentDuration - m_sink.front().duration) >= m_maxDuration))
|
||||
{
|
||||
m_currentDuration -= m_sink.front().duration;
|
||||
m_sink.pop_front();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue