Skip to content

Commit a79da7b

Browse files
committed
Allow disabling the Watch List blackout period.
Update the range for the "Days to exclude weekly episodes after delete" setting to allow 0-5 days, where 0 effectively disables the blackout period. Thanks to Seeker` on IRC for testing. Closes #10011.
1 parent 8fc66ac commit a79da7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mythtv/programs/mythfrontend/globalsettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2823,7 +2823,7 @@ static HostSpinBox *PlaybackWLMaxAge()
28232823

28242824
static HostSpinBox *PlaybackWLBlackOut()
28252825
{
2826-
HostSpinBox *gs = new HostSpinBox("PlaybackWLBlackOut", 1, 5, 1);
2826+
HostSpinBox *gs = new HostSpinBox("PlaybackWLBlackOut", 0, 5, 1);
28272827
gs->setLabel(QObject::tr("Days to exclude weekly episodes after delete"));
28282828
gs->setValue(2);
28292829
gs->setHelpText(QObject::tr("When an episode is deleted or marked as "

0 commit comments

Comments
 (0)