mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
statistics - router - fix bold marking for tunnel speeds over 1mbs
This commit is contained in:
parent
85cfda1963
commit
f5e7217bb4
@ -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…
Reference in New Issue
Block a user