fix small issue with My Position not displaying "Looking up address..."
This commit is contained in:
parent
c06c224e73
commit
36d126dc09
1 changed files with 3 additions and 1 deletions
|
@ -75,7 +75,9 @@ public abstract class MenuTitleController {
|
|||
MenuController menuController = getMenuController();
|
||||
if (menuController != null && menuController.needStreetName()) {
|
||||
// Display "Looking up address..." status
|
||||
if (searchingAddress) {
|
||||
//if (searchingAddress) {
|
||||
// Again here searchingAddress does not work for case of search interrupted by new searcj, so:
|
||||
if (Algorithms.isEmpty(streetStr)) {
|
||||
return addressNotKnownStr;
|
||||
} else {
|
||||
return streetStr;
|
||||
|
|
Loading…
Reference in a new issue