diff --git a/OsmAnd/src/net/osmand/plus/dashboard/DashFavoritesFragment.java b/OsmAnd/src/net/osmand/plus/dashboard/DashFavoritesFragment.java index 9068facdfe..c2ac591e90 100644 --- a/OsmAnd/src/net/osmand/plus/dashboard/DashFavoritesFragment.java +++ b/OsmAnd/src/net/osmand/plus/dashboard/DashFavoritesFragment.java @@ -76,6 +76,12 @@ public class DashFavoritesFragment extends DashBaseFragment { updateLocation(location); } setupFavorites(); + + //Ckeck if this fixes that lists are empty when returning from the map screen + View view = getView(); + if (view != null) { + view.invalidate(); + } }