Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm')
-rw-r--r--iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm10
1 files changed, 9 insertions, 1 deletions
diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm b/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm
index db11a02f71..0ae000aaa0 100644
--- a/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm
+++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/PlacePageView/MWMPPView.mm
@@ -1,6 +1,7 @@
+#import "MWMPPView.h"
#import "MWMCommon.h"
#import "MWMPlacePageActionBar.h"
-#import "MWMPPView.h"
+#import "SwiftBridge.h"
namespace
{
@@ -96,4 +97,11 @@ CGFloat const kTableViewTopInset = -36;
}
}
+#pragma mark - VisibleArea
+
+- (MWMVisibleAreaAffectDirection)visibleAreaAffectDirection
+{
+ return IPAD ? MWMVisibleAreaAffectDirectionLeft : MWMVisibleAreaAffectDirectionNone;
+}
+
@end