mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
Qt5,Qt6: allow paste text if mime type contains charset attribute
(cherry picked from commit 9f0c74432d
)
Co-authored-by: zeljan1 <zeljko@holobit.hr>
This commit is contained in:
parent
3634889ada
commit
7ec936059f
@ -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