use searchingAddress as condition

This commit is contained in:
sonora 2016-01-01 20:10:52 +01:00
parent e63ed1e3e6
commit 1865a78828

View file

@ -69,7 +69,7 @@ public abstract class MenuTitleController {
MenuController menuController = getMenuController(); MenuController menuController = getMenuController();
if (menuController != null && menuController.needStreetName()) { if (menuController != null && menuController.needStreetName()) {
// Special case for "My Position" context: Display "Looking up address..." status // Special case for "My Position" context: Display "Looking up address..." status
if (typeStr.equals(getMapActivity().getString(R.string.shared_string_my_location)) && (nameStr.equals(addressNotKnownStr))) { if (typeStr.equals(getMapActivity().getString(R.string.shared_string_my_location)) && searchingAddress) {
return addressNotKnownStr; return addressNotKnownStr;
} else { } else {
return streetStr; return streetStr;