xcb: Send also "text/plain" when a "text/uri-list" is dropped.
This will allow dropping of files from Qt applications to applications like Skype, which only accept "text/plain", but not "text/uri-list" or "text/x-moz-url". Task-number: QTBUG-53238 Change-Id: I01bca5c8e20647cedfc9323f542ab07f0cc48658 Reviewed-by: Dmitry Shachnev <mitya57@gmail.com> Reviewed-by: Błażej Szczygieł <spaz16@wp.pl> Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
This commit is contained in:
parent
1af4916e11
commit
3d621af54b
@ -125,6 +125,11 @@ bool QXcbMime::mimeDataForAtom(QXcbConnection *connection, xcb_atom_t a, QMimeDa
|
||||
ret = true;
|
||||
} else if ((a == XCB_ATOM_PIXMAP || a == XCB_ATOM_BITMAP) && mimeData->hasImage()) {
|
||||
ret = true;
|
||||
} else if (atomName == QLatin1String("text/plain")
|
||||
&& mimeData->hasFormat(QLatin1String("text/uri-list"))) {
|
||||
// Return URLs also as plain text.
|
||||
*data = QInternalMimeData::renderDataHelper(atomName, mimeData);
|
||||
ret = true;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
@ -143,8 +148,10 @@ QVector<xcb_atom_t> QXcbMime::mimeAtomsForFormat(QXcbConnection *connection, con
|
||||
}
|
||||
|
||||
// special cases for uris
|
||||
if (format == QLatin1String("text/uri-list"))
|
||||
if (format == QLatin1String("text/uri-list")) {
|
||||
atoms.append(connection->internAtom("text/x-moz-url"));
|
||||
atoms.append(connection->internAtom("text/plain"));
|
||||
}
|
||||
|
||||
//special cases for images
|
||||
if (format == QLatin1String("image/ppm"))
|
||||
|
Loading…
Reference in New Issue
Block a user