1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Bug2494: Label cut/copy/paste on Mac and the system clipboard...

... The fix also requires commit 58ad95e7981c9a2b116f318539c37889281baabe of
https://github.com/audacity/wxWidgets.git in the wxWidgets build
This commit is contained in:
Paul Licameli 2020-12-02 17:48:37 -05:00
parent b6ce29d234
commit c67842f525

View File

@ -1082,7 +1082,7 @@ bool LabelTrackView::PasteSelectedText(
/// @return true if the text data is available in the clipboard, false otherwise
bool LabelTrackView::IsTextClipSupported()
{
return wxTheClipboard->IsSupported(wxDF_TEXT);
return wxTheClipboard->IsSupported(wxDF_UNICODETEXT);
}