Skip to content

Commit

Permalink
Merge pull request #4153 from ims21/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
littlesat authored Dec 30, 2024
2 parents 9baca4b + 0b0b743 commit 3a4d612
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/python/Screens/Wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,11 +677,12 @@ def ChangeConfigValueCallback(self, callback=None):
print(self["config"].getCurrent()[1].value)
if isinstance(self["config"].getCurrent()[1], ConfigSelection):
self["config"].getCurrent()[1].setValue(callback[1])
print(self["config"].getCurrent()[1].value, list(self["config"].getCurrent()[1].choices))
else:
self["config"].getCurrent()[1].setValue(callback)
print(self["config"].getCurrent()[1].value, list(self["config"].getCurrent()[1].choices))
self["config"].invalidate(self["config"].getCurrent())
self.configInstance.entryChanged()
if self.configInstance:
self.configInstance.entryChanged()


class WizardManager:
Expand Down

0 comments on commit 3a4d612

Please sign in to comment.