浏览代码

use explicitly stageImage() after an immage has been dragged and dropped into the text input field

cyberta 2 年之前
父节点
当前提交
d3f702316b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      deltachat-ios/Chat/ChatViewController.swift

+ 1 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -2410,7 +2410,7 @@ extension ChatViewController: ChatInputTextViewPasteDelegate {
         sendSticker(image)
     }
     func onImageDragAndDropped(image: UIImage) {
-        onImageSelected(image: image)
+        stageImage(image)
     }
 }