address display issue fixed
This commit is contained in:
parent
39b97a110e
commit
c757ef3a0b
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public class FavoritePointEditor extends PointEditor {
|
||||||
}
|
}
|
||||||
favorite = new FavouritePoint(latLon.getLatitude(), latLon.getLongitude(), title, lastCategory);
|
favorite = new FavouritePoint(latLon.getLatitude(), latLon.getLongitude(), title, lastCategory);
|
||||||
favorite.setDescription("");
|
favorite.setDescription("");
|
||||||
favorite.setAddress(address);
|
favorite.setAddress(address.isEmpty() ? title : address);
|
||||||
favorite.setOriginObjectName(originObjectName);
|
favorite.setOriginObjectName(originObjectName);
|
||||||
FavoritePointEditorFragmentNew.showInstance(mapActivity);
|
FavoritePointEditorFragmentNew.showInstance(mapActivity);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue