mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
Qt5,Qt6: allow paste text if mime type contains charset attribute
This commit is contained in:
parent
b000e5a895
commit
9f0c74432d
@ -4120,7 +4120,7 @@ begin
|
||||
if (MimeType = 'text/plain') then // do not translate
|
||||
begin
|
||||
QGuiApplication_platformName(@WStr);
|
||||
if CompareText(Copy(UTF16ToUTF8(WStr), 1, 7),'wayland') = 0 then // do not translate
|
||||
if (WStr = 'xcb') or (CompareText(Copy(UTF16ToUTF8(WStr), 1, 7),'wayland') = 0) then // do not translate
|
||||
begin
|
||||
AFormats := QStringList_Create;
|
||||
QMimeData_formats(QtMimeData, AFormats);
|
||||
|
@ -4281,7 +4281,7 @@ begin
|
||||
if (MimeType = 'text/plain') then // do not translate
|
||||
begin
|
||||
QGuiApplication_platformName(@WStr);
|
||||
if CompareText(Copy(UTF16ToUTF8(WStr), 1, 7),'wayland') = 0 then // do not translate
|
||||
if (WStr = 'xcb') or (CompareText(Copy(UTF16ToUTF8(WStr), 1, 7),'wayland') = 0) then // do not translate
|
||||
begin
|
||||
AFormats := QStringList_Create;
|
||||
QMimeData_formats(QtMimeData, AFormats);
|
||||
|
Loading…
Reference in New Issue
Block a user