Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-05-11 12:18:28 +0300
committerHannah von Reth <vonreth@kde.org>2021-05-26 18:12:30 +0300
commit78a4fddc8b647f7bea8671a51c3997e9777b52ed (patch)
tree5d30fd1a16850d86346b25a792272eeefad0b763 /src/gui/activitywidget.cpp
parent286d6229a78067b4a4b14142d0be287037a934e7 (diff)
Add rtl support to copy to clipboard
Diffstat (limited to 'src/gui/activitywidget.cpp')
-rw-r--r--src/gui/activitywidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/activitywidget.cpp b/src/gui/activitywidget.cpp
index 466f3a4d5..dfbac6db2 100644
--- a/src/gui/activitywidget.cpp
+++ b/src/gui/activitywidget.cpp
@@ -453,7 +453,7 @@ void ActivityWidget::slotItemContextMenu()
menu->setAttribute(Qt::WA_DeleteOnClose);
// keep in sync with ProtocolWidget::showContextMenu
- menu->addAction(tr("Copy to clipboard"), this, [text = Models::formatSelection(rows)] {
+ menu->addAction(tr("Copy to clipboard"), this, [text = Models::formatSelection(rows, Models::UnderlyingDataRole)] {
QApplication::clipboard()->setText(text);
});