[Android] Fixed speed limit on UI
Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
4497de895f
commit
dd7cb529aa
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ public class NavMenu
|
|||
if (info.speedLimit != null && info.speedLimit.isValid())
|
||||
{
|
||||
SpeedFormatted speedLimit = info.speedLimit;
|
||||
mSpeedValue.setText(speed.mSpeedStr + "\u202F/\u202F" + speedLimit.getUnitsStr(mActivity));
|
||||
mSpeedValue.setText(speed.mSpeedStr + "\u202F/\u202F" + speedLimit.mSpeedStr);
|
||||
|
||||
speedLimitExceeded = (int)speed.mSpeed > (int)speedLimit.mSpeed;
|
||||
}
|
||||
|
|
Reference in a new issue