Browse Source

Merge pull request #3318 from SomberNight/qt_coins_disallow_label_edit

disallow editing labels in Coins tab (QT)
3.0.x
ThomasV 7 years ago
committed by GitHub
parent
commit
219a5b02a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      gui/qt/utxo_list.py

4
gui/qt/utxo_list.py

@ -69,3 +69,7 @@ class UTXOList(MyTreeWidget):
menu.addAction(_("Details"), lambda: self.parent.show_transaction(tx))
menu.exec_(self.viewport().mapToGlobal(position))
def on_permit_edit(self, item, column):
# disable editing fields in this tab (labels)
return False

Loading…
Cancel
Save