[android] Fixed disabling traffic mode

This commit is contained in:
Dmitry Donskoy 2018-06-29 17:52:15 +03:00 committed by Aleksandr Zatsepin
parent a08666f777
commit 0b94be8836

View file

@ -64,9 +64,21 @@ public class MapLayerCompositeController implements MapLayerController
boolean enabled = mode.isEnabled(mActivity);
if (enabled)
{
turnOn();
}
else
{
turnOff();
turnInitialMode();
}
}
private void turnInitialMode()
{
mMasterEntry.mController.hideImmediately();
mMasterEntry = mChildrenEntries.iterator().next();
mMasterEntry.mController.showImmediately();
}
public void applyLastActiveMode()