mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-23 22:51:12 -04:00
statistics - router - fix bold marking for tunnel speeds over 1mbs
This commit is contained in:
parent
85cfda1963
commit
f5e7217bb4
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ void TurtleRouterDialog::updateTunnelRequests( const std::vector<std::vector<std
|
|||
font.setItalic(true);
|
||||
item->setFont(0,font);
|
||||
}
|
||||
if(strtol(tunnels_info[i][5].c_str(), NULL, 0)>1000) // fast
|
||||
if(strtof(tunnels_info[i][5].c_str(), NULL)>1000) // fast
|
||||
{
|
||||
font.setBold(true);
|
||||
item->setFont(0,font);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue