mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-24 15:05:35 -04:00
fixed display bug in bw statistics graph
This commit is contained in:
parent
b206317442
commit
ff4c360e27
1 changed files with 5 additions and 1 deletions
|
@ -63,7 +63,11 @@ void BWGraphSource::update()
|
||||||
// now, convert data to current curve points.
|
// now, convert data to current curve points.
|
||||||
|
|
||||||
std::map<std::string,float> vals ;
|
std::map<std::string,float> vals ;
|
||||||
|
|
||||||
|
if(_current_direction == BWGraphSource::DIRECTION_UP)
|
||||||
convertTrafficClueToValues(thc.out_rstcl,vals) ;
|
convertTrafficClueToValues(thc.out_rstcl,vals) ;
|
||||||
|
else
|
||||||
|
convertTrafficClueToValues(thc.in_rstcl,vals) ;
|
||||||
|
|
||||||
qint64 ms = getTime() ;
|
qint64 ms = getTime() ;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue