Fix context menu npe
This commit is contained in:
parent
7277f72b7a
commit
0294dd8c45
1 changed files with 12 additions and 10 deletions
|
@ -574,7 +574,7 @@ public class MapContextMenuFragment extends Fragment implements DownloadEvents {
|
|||
}
|
||||
|
||||
private void restoreCustomMapRatio() {
|
||||
if (map.hasCustomMapRatio()) {
|
||||
if (map != null && map.hasCustomMapRatio()) {
|
||||
map.restoreMapRatio();
|
||||
}
|
||||
}
|
||||
|
@ -881,6 +881,7 @@ public class MapContextMenuFragment extends Fragment implements DownloadEvents {
|
|||
public void onPause() {
|
||||
restoreCustomMapRatio();
|
||||
|
||||
if (view != null) {
|
||||
ViewParent parent = view.getParent();
|
||||
if (parent != null && containerLayoutListener != null) {
|
||||
((View) parent).removeOnLayoutChangeListener(containerLayoutListener);
|
||||
|
@ -891,6 +892,7 @@ public class MapContextMenuFragment extends Fragment implements DownloadEvents {
|
|||
getMapActivity().enableDrawer();
|
||||
}
|
||||
menu.updateControlsVisibility(false);
|
||||
}
|
||||
super.onPause();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue