tkivy: minor fix (checkbox.active cannot be None) - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit f1d3be11bb2c5c60d426b3e94d58447b3313ed44 DIR parent 6bc73f4d74bd0bbd1dd9f97d65a26fa66bd4e1ad HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 10 Jun 2016 06:57:04 +0200 kivy: minor fix (checkbox.active cannot be None) Diffstat: M gui/kivy/uix/dialogs/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/kivy/uix/dialogs/settings.py b/gui/kivy/uix/dialogs/settings.py t@@ -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):