commit 1ddbd633b8a708a971b052e6cc1011f975411180
parent 936ee47d3a07bbb28651751b303328b223cf22ae
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 12 Dec 2017 17:25:41 +0100
kivy: disable coinchooser option
Diffstat:
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/gui/kivy/uix/dialogs/settings.py b/gui/kivy/uix/dialogs/settings.py
@@ -90,12 +90,14 @@ Builder.load_string('''
description: _("Send your change to separate addresses.")
message: _('Send excess coins to change addresses')
action: partial(root.boolean_dialog, 'use_change', _('Use change addresses'), self.message)
- CardSeparator
- SettingsItem:
- status: root.coinselect_status()
- title: _('Coin selection') + ': ' + self.status
- description: "Coin selection method"
- action: partial(root.coinselect_dialog, self)
+
+ # disabled: there is currently only one coin selection policy
+ #CardSeparator
+ #SettingsItem:
+ # status: root.coinselect_status()
+ # title: _('Coin selection') + ': ' + self.status
+ # description: "Coin selection method"
+ # action: partial(root.coinselect_dialog, self)
''')