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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
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 |
|
|
|