fix for iOS 15 fullscreen mode not working

This commit is contained in:
Mauro Romito
2022-11-30 13:27:07 +01:00
parent c897cef78d
commit a7953c092b
3 changed files with 13 additions and 4 deletions

View File

@@ -165,6 +165,9 @@ class WysiwygInputToolbarView: MXKRoomInputToolbarView, NibLoadable, HtmlRoomInp
guard let self = self else { return }
self.toolbarViewDelegate?.didChangeMaximisedState(value)
self.hostingViewController.view.layer.cornerRadius = value ? 20 : 0
if !value {
self.voiceMessageBottomConstraint?.constant = 2
}
}
]