qt: move "FREEZE_REUSED_ADDRESS_UTXOS" option to utxo_list toolbar
ref https://github.com/spesmilo/electrum/pull/9636
This commit is contained in:
@@ -418,11 +418,6 @@ class TxEditor(WindowModalDialog):
|
|||||||
self.pref_menu.addConfig(self.config.cv.WALLET_MERGE_DUPLICATE_OUTPUTS, callback=self.trigger_update)
|
self.pref_menu.addConfig(self.config.cv.WALLET_MERGE_DUPLICATE_OUTPUTS, callback=self.trigger_update)
|
||||||
self.pref_menu.addConfig(self.config.cv.WALLET_SPEND_CONFIRMED_ONLY, callback=self.trigger_update)
|
self.pref_menu.addConfig(self.config.cv.WALLET_SPEND_CONFIRMED_ONLY, callback=self.trigger_update)
|
||||||
self.pref_menu.addConfig(self.config.cv.WALLET_COIN_CHOOSER_OUTPUT_ROUNDING, callback=self.trigger_update)
|
self.pref_menu.addConfig(self.config.cv.WALLET_COIN_CHOOSER_OUTPUT_ROUNDING, callback=self.trigger_update)
|
||||||
def cb():
|
|
||||||
self.trigger_update()
|
|
||||||
self.main_window.utxo_list.refresh_all() # for coin frozen status
|
|
||||||
self.main_window.update_status() # frozen balance
|
|
||||||
self.pref_menu.addConfig(self.config.cv.WALLET_FREEZE_REUSED_ADDRESS_UTXOS, callback=cb)
|
|
||||||
self.pref_button = QToolButton()
|
self.pref_button = QToolButton()
|
||||||
self.pref_button.setIcon(read_QIcon("preferences.png"))
|
self.pref_button.setIcon(read_QIcon("preferences.png"))
|
||||||
self.pref_button.setMenu(self.pref_menu)
|
self.pref_button.setMenu(self.pref_menu)
|
||||||
|
|||||||
@@ -90,6 +90,11 @@ class UTXOList(MyTreeView):
|
|||||||
toolbar, menu = self.create_toolbar_with_menu('')
|
toolbar, menu = self.create_toolbar_with_menu('')
|
||||||
self.num_coins_label = toolbar.itemAt(0).widget()
|
self.num_coins_label = toolbar.itemAt(0).widget()
|
||||||
menu.addAction(_('Coin control'), lambda: self.add_selection_to_coincontrol())
|
menu.addAction(_('Coin control'), lambda: self.add_selection_to_coincontrol())
|
||||||
|
|
||||||
|
def cb():
|
||||||
|
self.main_window.utxo_list.refresh_all() # for coin frozen status
|
||||||
|
self.main_window.update_status() # frozen balance
|
||||||
|
menu.addConfig(config.cv.WALLET_FREEZE_REUSED_ADDRESS_UTXOS, callback=cb)
|
||||||
return toolbar
|
return toolbar
|
||||||
|
|
||||||
@profiler(min_threshold=0.05)
|
@profiler(min_threshold=0.05)
|
||||||
|
|||||||
Reference in New Issue
Block a user