Browse Source

kivy: minor fix (checkbox.active cannot be None)

283
ThomasV 9 years ago
parent
commit
f1d3be11bb
  1. 2
      gui/kivy/uix/dialogs/settings.py

2
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):

Loading…
Cancel
Save