Skip to content

Commit a582117

Browse files
committed
src/qt/mempooltxtables.cpp:TXID:copy and paste-able
1 parent 69e1418 commit a582117

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/qt/mempooltxtables.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,9 @@ Qt::ItemFlags MempoolTxTableModel::flags(const QModelIndex &index) const
137137
if (!index.isValid()) return Qt::NoItemFlags;
138138

139139
Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled;
140+
if (index.column() == TxID) {
141+
retval |= Qt::ItemIsEditable;
142+
}
140143
return retval;
141144
}
142145

0 commit comments

Comments
 (0)