Browse Source

disallow editing labels in Coins tab (QT)

3.0.x
SomberNight 7 years ago
parent
commit
1799b8a7af
  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