mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 00:41:31 +00:00
kivy: minor fix (checkbox.active cannot be None)
This commit is contained in:
parent
6bc73f4d74
commit
f1d3be11bb
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue