diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index 1be094103..3d55c937f 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -793,7 +793,6 @@ class SceneCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider { let settingsNavController = UIStoryboard.settings.instantiateInitialViewController() as! UINavigationController let settingsViewController = settingsNavController.topViewController as! SettingsViewController settingsNavController.modalPresentationStyle = .formSheet - settingsNavController.preferredContentSize = SettingsViewController.preferredContentSizeForFormSheetDisplay settingsViewController.presentingParentController = rootSplitViewController rootSplitViewController.present(settingsNavController, animated: true) } diff --git a/iOS/Settings/SettingsViewController.swift b/iOS/Settings/SettingsViewController.swift index 0b155f06b..2834fac1a 100644 --- a/iOS/Settings/SettingsViewController.swift +++ b/iOS/Settings/SettingsViewController.swift @@ -15,8 +15,6 @@ class SettingsViewController: UITableViewController { private let appNewsURLString = "https://nnw.ranchero.com/feed.json" private weak var opmlAccount: Account? - static let preferredContentSizeForFormSheetDisplay = CGSize(width: 460.0, height: 400.0) - @IBOutlet weak var timelineSortOrderSwitch: UISwitch! @IBOutlet weak var groupByFeedSwitch: UISwitch! @IBOutlet weak var numberOfTextLinesLabel: UILabel!