mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 17:01:34 +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.'),
|
_('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.')]
|
_('Note that some merchants do not accept non-final transactions until they are confirmed.')]
|
||||||
fullname = _('Replace by fee')
|
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()
|
self._rbf_dialog.open()
|
||||||
|
|
||||||
def fx_status(self):
|
def fx_status(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue