[Android] Fixed always red speedometer in navigation mode

Signed-off-by: Sergiy Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2024-08-15 21:15:27 +03:00 committed by Alexander Borsuk
parent 54369bad31
commit 40ede2fb3a

View file

@ -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));