Pārlūkot izejas kodu

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

cyberta 2 gadi atpakaļ
vecāks
revīzija
d3f702316b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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)
     }
 }