Explorar el Código

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

cyberta hace 2 años
padre
commit
d3f702316b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)
     }
 }