Skip to content

Commit

Permalink
imp - Changed BarWave delay default
Browse files Browse the repository at this point in the history
---

Since the screensaver went faster than before, we've decided to change the defaults for the BarWave screensaver.

---

Type: imp
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Feb 23, 2024
1 parent 477be51 commit 8453f0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static int BarWaveDelay
set
{
if (value <= 0)
value = 1;
value = 100;
ScreensaverPackInit.SaversConfig.BarWaveDelay = value;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2231,7 +2231,7 @@ public class ExtraSaversConfig : BaseKernelConfig, IKernelConfig
/// <summary>
/// [BarWave] How many milliseconds to wait before making the next write?
/// </summary>
public int BarWaveDelay { get; set; } = 1;
public int BarWaveDelay { get; set; } = 100;
/// <summary>
/// [BarWave] The level of the frequency. This is the denominator of the Pi value (3.1415926...) in mathematics, defined by <see cref="Math.PI"/>.
/// </summary>
Expand Down

0 comments on commit 8453f0f

Please sign in to comment.