Don't round bottom corners of asset picker
Corner radius doesn't match that used on 2019 iPad Pro, so rounding the bottom corners results in the view controller beneath the asset picker showing through in some split-screen configurations
This commit is contained in:
parent
1a11dd2a69
commit
17f15db32d
|
@ -33,6 +33,8 @@ class AssetPickerSheetContainerViewController: SheetContainerViewController {
|
|||
|
||||
override func viewDidLoad() {
|
||||
assetPicker.view.layer.cornerRadius = view.bounds.width * 0.02
|
||||
// don't round bottom corners, since they'll always be cut off by the device
|
||||
assetPicker.view.layer.maskedCorners = [.layerMinXMinYCorner, .layerMaxXMinYCorner]
|
||||
|
||||
super.viewDidLoad()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue