mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -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.
|
||||
|
||||
std::map<std::string,float> vals ;
|
||||
convertTrafficClueToValues(thc.out_rstcl,vals) ;
|
||||
|
||||
if(_current_direction == BWGraphSource::DIRECTION_UP)
|
||||
convertTrafficClueToValues(thc.out_rstcl,vals) ;
|
||||
else
|
||||
convertTrafficClueToValues(thc.in_rstcl,vals) ;
|
||||
|
||||
qint64 ms = getTime() ;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue