[iOS] show map download dialog below other controls

This commit is contained in:
Aleksey Belouosv 2019-10-16 19:22:28 +03:00 committed by Daria Volvenkova
parent 5ef4b34c8f
commit 75d185f946

View file

@ -184,12 +184,8 @@ using namespace storage;
- (void)addToSuperview {
if (self.superview)
return;
auto superview = self.controller.view;
auto bottomMenuView = [MWMBottomMenuViewController controller].view;
if (bottomMenuView)
[superview insertSubview:self belowSubview:bottomMenuView];
else
[superview addSubview:self];
MapViewController *controller = self.controller;
[controller.view insertSubview:self aboveSubview:controller.mapView];
[MWMFrameworkListener addObserver:self];
}