session-ios/Session/Media Viewing & Editing/OWSImagePickerController.swift

15 lines
327 B
Swift
Raw Normal View History

2019-01-08 17:18:05 +01:00
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
//
import Foundation
@objc class OWSImagePickerController: UIImagePickerController {
// MARK: Orientation
override public var supportedInterfaceOrientations: UIInterfaceOrientationMask {
return DefaultUIInterfaceOrientationMask()
2019-01-08 17:18:05 +01:00
}
}