mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Properly prepare text for clipboard for context menu
This makes the context menu in macOS embed the right text
This commit is contained in:
@@ -113,7 +113,7 @@ export function rightClickHandler(ev: MouseEvent, textarea: HTMLTextAreaElement,
|
||||
textarea.style.zIndex = '1000';
|
||||
|
||||
// Get textarea ready to copy from the context menu
|
||||
textarea.value = selectionManager.selectionText;
|
||||
textarea.value = prepareTextForClipboard(selectionManager.selectionText);
|
||||
textarea.focus();
|
||||
textarea.select();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user