Browse Source

Merge pull request #1664 from yann300/bugFix2

Mix - bug fix
cl-refactor
Arkadiy Paronyan 10 years ago
parent
commit
b289a23322
  1. 2
      mix/qml/TransactionLog.qml

2
mix/qml/TransactionLog.qml

@ -151,7 +151,7 @@ Item {
Keys.onPressed: { Keys.onPressed: {
if ((event.modifiers & Qt.ControlModifier) && event.key === Qt.Key_C && currentRow >=0 && currentRow < logTable.model.count) { if ((event.modifiers & Qt.ControlModifier) && event.key === Qt.Key_C && currentRow >=0 && currentRow < logTable.model.count) {
var item = logTable.model.get(currentRow); var item = logTable.model.get(currentRow);
appContext.toClipboard(item.returned); clipboard.text = item.returned;
} }
} }
} }

Loading…
Cancel
Save