Copy All as Text now includes margin offset text prepended to each line

This commit is contained in:
IChooseYou
2026-02-10 06:17:10 -07:00
committed by sysadmin
parent 910b607b79
commit 9dd104ff34
3 changed files with 16 additions and 1 deletions

View File

@@ -1184,7 +1184,7 @@ void RcxController::showContextMenu(RcxEditor* editor, int line, int nodeIdx,
menu.addSeparator();
menu.addAction(icon("clippy.svg"), "Copy All as Text", [editor]() {
QApplication::clipboard()->setText(editor->scintilla()->text());
QApplication::clipboard()->setText(editor->textWithMargins());
});
menu.exec(globalPos);