Prevent copying in a couple places (#4066)

This commit is contained in:
Kasia
2022-10-16 16:25:24 +02:00
committed by GitHub
parent 34b5fa661f
commit b232d16b55
3 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -286,11 +286,12 @@ void ResizingTextEdit::insertFromMimeData(const QMimeData *source)
this->imagePasted.invoke(source);
return;
}
else if (source->hasUrls())
if (source->hasUrls())
{
bool hasUploadable = false;
auto mimeDb = QMimeDatabase();
for (const QUrl url : source->urls())
for (const QUrl &url : source->urls())
{
QMimeType mime = mimeDb.mimeTypeForUrl(url);
if (mime.name().startsWith("image"))