forked from organicmaps/organicmaps
Review fixes
This commit is contained in:
parent
7f5ea2277f
commit
2cd3800c03
1 changed files with 2 additions and 3 deletions
|
@ -347,11 +347,10 @@ void TrafficGenerator::SetSimplifiedColorSchemeEnabled(bool enabled)
|
|||
// static
|
||||
traffic::SpeedGroup TrafficGenerator::CheckColorsSimplification(traffic::SpeedGroup speedGroup)
|
||||
{
|
||||
traffic::SpeedGroup group = speedGroup;
|
||||
// In simplified color scheme we reduce amount of speed groups visually.
|
||||
if (m_simplifiedColorScheme && speedGroup == traffic::SpeedGroup::G4)
|
||||
group = traffic::SpeedGroup::G3;
|
||||
return group;
|
||||
return traffic::SpeedGroup::G3;
|
||||
return speedGroup;
|
||||
}
|
||||
|
||||
// static
|
||||
|
|
Loading…
Add table
Reference in a new issue