commit f1d3be11bb2c5c60d426b3e94d58447b3313ed44
parent 6bc73f4d74bd0bbd1dd9f97d65a26fa66bd4e1ad
Author: ThomasV <thomasv@electrum.org>
Date: Fri, 10 Jun 2016 06:57:04 +0200
kivy: minor fix (checkbox.active cannot be None)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/kivy/uix/dialogs/settings.py b/gui/kivy/uix/dialogs/settings.py
@@ -238,7 +238,7 @@ class SettingsDialog(Factory.Popup):
_('and you will have the possiblity, while they are unconfirmed, to replace them with transactions that pays higher fees.'),
_('Note that some merchants do not accept non-final transactions until they are confirmed.')]
fullname = _('Replace by fee')
- self._rbf_dialog = CheckBoxDialog(fullname, ' '.join(msg), self.config.get('use_rbf'), cb)
+ self._rbf_dialog = CheckBoxDialog(fullname, ' '.join(msg), self.config.get('use_rbf', False), cb)
self._rbf_dialog.open()
def fx_status(self):