[android] Fixed notes

This commit is contained in:
Dmitry Donskoy 2020-05-19 19:25:53 +03:00 committed by Aleksandr Zatsepin
parent 62db6ac0e4
commit ef87e029f1
2 changed files with 3 additions and 2 deletions

View file

@ -1489,6 +1489,8 @@ public class MwmActivity extends BaseMwmFragmentActivity
private void onGuidesFatalError()
{
mToggleMapLayerController.turnOff();
RecyclerView bottomSheetRecycler = findViewById(R.id.layers_recycler);
Objects.requireNonNull(bottomSheetRecycler.getAdapter()).notifyDataSetChanged();
showGuidesFatalErrorDialog();
ToggleMapLayerDialog frag = ToggleMapLayerDialog.getInstance(this);
if (frag == null)

View file

@ -36,8 +36,7 @@ public enum GuidesState
@Override
public void activate(@NonNull Context context)
{
Toast.makeText(context, R.string.connection_error_toast_guides, Toast.LENGTH_SHORT)
.show();
Toast.makeText(context, R.string.connection_error_toast_guides, Toast.LENGTH_SHORT).show();
}
},
FATAL_NETWORK_ERROR;