diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index 1ed5663b..9ed7e11b 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -265,8 +265,8 @@ void ExtendedTableWidget::copy(const bool withHeaders) return; } - // The field isn't empty. Quote data as needed and copy it to the clipboard - qApp->clipboard()->setText(escapeCopiedData(data.toByteArray())); + // The field isn't empty. Copy the text to the clipboard without quoting (for general plain text clipboard) + qApp->clipboard()->setText(data.toByteArray()); return; } }