Skip to content

Commit

Permalink
[UsageConfing] config.usage.setupShowDefault bug
Browse files Browse the repository at this point in the history
config.usage.setupShowDefault had a selection with an empty string
which causes "Really close without saving settings?" message when
exiting setup with no changes.
  • Loading branch information
Huevos committed Jan 8, 2025
1 parent b1973a7 commit c9d74b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Components/UsageConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def showsecondinfobarChanged(configElement):
config.usage.movieplayer_pvrstate = ConfigYesNo(default=True)

config.usage.setupShowDefault = ConfigSelection(default="spaces", choices=[
("", _("Don't show default")),
(None, _("Don't show default")),
("spaces", _("Show default after description")),
("newline", _("Show default on new line"))
])
Expand Down

0 comments on commit c9d74b7

Please sign in to comment.