diff --git a/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm b/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm index 2e2424409d..6d99351b5a 100644 --- a/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm +++ b/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm @@ -65,8 +65,10 @@ using namespace storage; self.nodeSize.text = formattedSize(nodeAttrs.m_mwmSize); auto addSubview = ^ { + UIView * parentView = self.controller.view; if (!self.superview) - [self.controller.view addSubview:self]; + [parentView addSubview:self]; + [parentView sendSubviewToBack:self]; }; auto removeSubview = ^ {