better suppress wrong turn instructions, remaining bug is when route was freshly recalculated

This commit is contained in:
sonora 2012-02-19 11:03:24 +01:00
parent d4d8aff50e
commit 0b7b615c3d

View file

@ -386,7 +386,7 @@ public class RoutingHelper {
}
}
}
if (suppressTurnPrompt == false && calculateRoute == false) {
if ((suppressTurnPrompt == false && calculateRoute == false) || makeUturnWhenPossible == true) {
voiceRouter.updateStatus(currentLocation, makeUturnWhenPossible);
}
}