Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Source/Infra/EKRootViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ class EKRootViewController: UIViewController {
return super.supportedInterfaceOrientations
case .all:
return .all
case .specified(let orientation):
return orientation
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,11 @@ public extension EKAttributes {
/** Uses standard supported interface orientation (target specification in general settings) */
case standard

/** Supports all orinetations */
/** Supports all orientations */
case all

/** Specify orientation mask */
case specified(orientation: UIInterfaceOrientationMask)
}

/** Autorotate the entry along with the device orientation */
Expand Down