Skip to content

Commit

Permalink
pvr: fixed - allow setting a 0 recording margin. credits @dado483
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed May 20, 2012
1 parent c7c7cc8 commit 51bb44d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/settings/GUISettings.cpp
Expand Up @@ -949,8 +949,8 @@ void CGUISettings::Initialize()
AddInt(pvrr, "pvrrecord.instantrecordtime", 19172, 180, 1, 1, 720, SPIN_CONTROL_INT_PLUS, MASK_MINS);
AddInt(pvrr, "pvrrecord.defaultpriority", 19173, 50, 1, 1, 100, SPIN_CONTROL_INT_PLUS);
AddInt(pvrr, "pvrrecord.defaultlifetime", 19174, 99, 1, 1, 365, SPIN_CONTROL_INT_PLUS, MASK_DAYS);
AddInt(pvrr, "pvrrecord.marginstart", 19175, 2, 1, 1, 60, SPIN_CONTROL_INT_PLUS, MASK_MINS);
AddInt(pvrr, "pvrrecord.marginend", 19176, 10, 1, 1, 60, SPIN_CONTROL_INT_PLUS, MASK_MINS);
AddInt(pvrr, "pvrrecord.marginstart", 19175, 2, 0, 1, 60, SPIN_CONTROL_INT_PLUS, MASK_MINS);
AddInt(pvrr, "pvrrecord.marginend", 19176, 10, 0, 1, 60, SPIN_CONTROL_INT_PLUS, MASK_MINS);
AddSeparator(pvrr, "pvrrecord.sep1");
AddBool(pvr, "pvrrecord.timernotifications", 19233, true);

Expand Down

0 comments on commit 51bb44d

Please sign in to comment.