forked from shadowfacts/Tusker
parent
f55a870964
commit
360db07ef2
|
@ -165,7 +165,9 @@ struct MainComposeWrappedTextView: UIViewRepresentable {
|
||||||
}
|
}
|
||||||
|
|
||||||
override func paste(_ sender: Any?) {
|
override func paste(_ sender: Any?) {
|
||||||
if UIPasteboard.general.contains(pasteboardTypes: CompositionAttachment.readableTypeIdentifiersForItemProvider) {
|
// we deliberately exclude the other CompositionAttachment readable type identifiers, because that's too overzealous with the conversion
|
||||||
|
// and things like URLs end up pasting as attachments
|
||||||
|
if UIPasteboard.general.contains(pasteboardTypes: UIImage.readableTypeIdentifiersForItemProvider) {
|
||||||
uiState.delegate?.paste(itemProviders: UIPasteboard.general.itemProviders)
|
uiState.delegate?.paste(itemProviders: UIPasteboard.general.itemProviders)
|
||||||
} else {
|
} else {
|
||||||
super.paste(sender)
|
super.paste(sender)
|
||||||
|
|
Loading…
Reference in New Issue