Fixed map not redrawn after elements added

This commit is contained in:
Daniele Verducci (Slimpenguin)
2024-02-23 07:18:10 +01:00
parent 513bc368b2
commit 0e8f9e2dfa
2 changed files with 6 additions and 5 deletions

View File

@ -94,6 +94,7 @@ public class GeofavoriteMapFragment extends GeofavoritesFragment implements Main
public void onChanged(List<Geofavorite> geofavorites) {
for(Geofavorite gf : geofavorites)
addMarker(gf);
map.invalidate();
}
});