forked from organicmaps/organicmaps
[Android] Fixed always red speedometer in navigation mode
Signed-off-by: Sergiy Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
2fe5ca32a2
commit
fa18f73d9d
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ public class NavMenu
|
|||
else
|
||||
mSpeedValue.setText(speedAndUnits.first);
|
||||
|
||||
if (last.getSpeed() > info.speedLimitMps)
|
||||
if (info.speedLimitMps > 0.0 && last.getSpeed() > info.speedLimitMps)
|
||||
{
|
||||
if (info.isSpeedCamLimitExceeded())
|
||||
mSpeedValue.setTextColor(ContextCompat.getColor(mActivity, R.color.white_primary));
|
||||
|
|
Loading…
Add table
Reference in a new issue