From ff24e826c9af97d6bf81a48bd24a4b18b0a18b6d Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 9 Jan 2019 10:22:27 -0500 Subject: [PATCH] Landscape orientation. --- .../AppSettings/OWSLinkDeviceViewController.m | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Signal/src/ViewControllers/AppSettings/OWSLinkDeviceViewController.m b/Signal/src/ViewControllers/AppSettings/OWSLinkDeviceViewController.m index 273bbff63..27501cc83 100644 --- a/Signal/src/ViewControllers/AppSettings/OWSLinkDeviceViewController.m +++ b/Signal/src/ViewControllers/AppSettings/OWSLinkDeviceViewController.m @@ -237,6 +237,13 @@ NS_ASSUME_NONNULL_BEGIN return alertController; } +#pragma mark - Orientation + +- (UIInterfaceOrientationMask)supportedInterfaceOrientations +{ + return UIInterfaceOrientationMaskPortrait; +} + @end NS_ASSUME_NONNULL_END