cocoa: fix the clipboard pasting of a plain text. #34832 patch by Zoë Peterson

git-svn-id: trunk@60029 -
This commit is contained in:
dmitry 2019-01-08 03:19:37 +00:00
parent 9562cb7492
commit f971f7d20b

View File

@ -431,7 +431,7 @@ function TCocoaWSClipboard.CocoaTypeToMimeType(AType: NSString): string;
begin
// "default" types must be mapped to a default LCL mime-type
if AType.isEqualToString(_NSPasteboardTypeString) then
Result := 'text/plan'
Result := 'text/plain'
else
Result := NSStringToString(AType);
end;