From f1d3be11bb2c5c60d426b3e94d58447b3313ed44 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 10 Jun 2016 06:57:04 +0200 Subject: [PATCH] kivy: minor fix (checkbox.active cannot be None) --- gui/kivy/uix/dialogs/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/kivy/uix/dialogs/settings.py b/gui/kivy/uix/dialogs/settings.py index 8f17a8e2c..03ba62001 100644 --- 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):