Skip to content

Commit

Permalink
Merge pull request xbmc#25705 from ksooo/pvr-fix-timersettings-record…
Browse files Browse the repository at this point in the history
…ings-in-progress

[PVR] Timer settings dialog: Fix settings read-only conditions for in-progress recordings
  • Loading branch information
ksooo authored Sep 7, 2024
2 parents 4048fa0 + fb2ae66 commit 275dce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/pvr/dialogs/GUIDialogPVRTimerSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1365,8 +1365,8 @@ bool CGUIDialogPVRTimerSettings::TypeReadOnlyCondition(const std::string& condit
if (pThis->m_timerInfoTag->State() == PVR_TIMER_STATE_RECORDING)
{
if (cond == SETTING_TMR_TYPE || cond == SETTING_TMR_CHANNEL || cond == SETTING_TMR_BEGIN_PRE ||
cond == SETTING_TMR_START_DAY || cond == SETTING_TMR_BEGIN || SETTING_TMR_PRIORITY ||
cond == SETTING_TMR_DIR)
cond == SETTING_TMR_START_DAY || cond == SETTING_TMR_BEGIN ||
cond == SETTING_TMR_PRIORITY || cond == SETTING_TMR_DIR)
return false;
}

Expand Down

0 comments on commit 275dce0

Please sign in to comment.