Browse Source

bug fix: copy paste from transaction logs

cl-refactor
yann300 10 years ago
parent
commit
acc9b124ae
  1. 2
      mix/qml/TransactionLog.qml

2
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;
}
}
}

Loading…
Cancel
Save