mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
rename WizardChoiceDialog (ambiguous)
This commit is contained in:
parent
bffc2a1d4b
commit
9c454726f4
2 changed files with 5 additions and 6 deletions
|
@ -46,7 +46,6 @@ class ChoiceDialog(Factory.Popup):
|
|||
|
||||
def __init__(self, title, choices, key, callback, keep_choice_order=False):
|
||||
Factory.Popup.__init__(self)
|
||||
print(choices, type(choices))
|
||||
if keep_choice_order:
|
||||
orig_index = {choice: i for (i, choice) in enumerate(choices)}
|
||||
sort_key = lambda x: orig_index[x[0]]
|
||||
|
|
|
@ -151,7 +151,7 @@ Builder.load_string('''
|
|||
value: 2
|
||||
|
||||
|
||||
<ChoiceDialog>
|
||||
<WizardChoiceDialog>
|
||||
message : ''
|
||||
Widget:
|
||||
size_hint: 1, 1
|
||||
|
@ -744,10 +744,10 @@ class WizardConfirmDialog(WizardDialog):
|
|||
return (True,)
|
||||
|
||||
|
||||
class ChoiceDialog(WizardDialog):
|
||||
class WizardChoiceDialog(WizardDialog):
|
||||
|
||||
def __init__(self, wizard, **kwargs):
|
||||
super(ChoiceDialog, self).__init__(wizard, **kwargs)
|
||||
super(WizardChoiceDialog, self).__init__(wizard, **kwargs)
|
||||
self.title = kwargs.get('message', '')
|
||||
self.message = kwargs.get('message', '')
|
||||
choices = kwargs.get('choices', [])
|
||||
|
@ -791,7 +791,7 @@ class CLButton(ToggleButton):
|
|||
self.root.script_type = self.script_type
|
||||
self.root.set_text(self.value)
|
||||
|
||||
class ChoiceLineDialog(ChoiceDialog):
|
||||
class ChoiceLineDialog(WizardChoiceDialog):
|
||||
title = StringProperty('')
|
||||
message1 = StringProperty('')
|
||||
message2 = StringProperty('')
|
||||
|
@ -1094,7 +1094,7 @@ class InstallWizard(BaseWizard, Widget):
|
|||
def choice_dialog(self, **kwargs):
|
||||
choices = kwargs['choices']
|
||||
if len(choices) > 1:
|
||||
ChoiceDialog(self, **kwargs).open()
|
||||
WizardChoiceDialog(self, **kwargs).open()
|
||||
else:
|
||||
f = kwargs['run_next']
|
||||
f(choices[0][0])
|
||||
|
|
Loading…
Add table
Reference in a new issue