forked from organicmaps/organicmaps
Fix IllegalStateException in destroySurface method
Signed-off-by: DevarshVasani <vasanidevarsh@gmail.com>
This commit is contained in:
parent
10e7749f2f
commit
619b64e0e9
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ public class MapFragment extends BaseMwmFragment implements View.OnTouchListener
|
|||
|
||||
public void destroySurface()
|
||||
{
|
||||
mMap.onSurfaceDestroyed(requireActivity().isChangingConfigurations(), isAdded());
|
||||
if (getActivity() != null)
|
||||
mMap.onSurfaceDestroyed(getActivity().isChangingConfigurations(), isAdded());
|
||||
}
|
||||
|
||||
public boolean isContextCreated()
|
||||
|
|
Loading…
Add table
Reference in a new issue