From acc9b124ae89cde7b0954969e91c72557a5300e3 Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 17 Apr 2015 17:32:28 +0200 Subject: [PATCH] bug fix: copy paste from transaction logs --- mix/qml/TransactionLog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix/qml/TransactionLog.qml b/mix/qml/TransactionLog.qml index 86f8b2a74..16ed3e9bf 100644 --- a/mix/qml/TransactionLog.qml +++ b/mix/qml/TransactionLog.qml @@ -151,7 +151,7 @@ Item { Keys.onPressed: { if ((event.modifiers & Qt.ControlModifier) && event.key === Qt.Key_C && currentRow >=0 && currentRow < logTable.model.count) { var item = logTable.model.get(currentRow); - appContext.toClipboard(item.returned); + clipboard.text = item.returned; } } }