Skip to content

Commit

Permalink
hashsets initial value
Browse files Browse the repository at this point in the history
  • Loading branch information
A-tG committed May 1, 2022
1 parent 871017a commit 37b955b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VoicemeeterOsdProgram/Options/OsdOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public class OsdOptions : OsdOptionsBase
private double m_backgroundOpacity = 0.9;
private bool m_animationsEnabled = true;
private bool m_waitForVmInit = true;
private HashSet<StripElements> m_alwaysShowElements = new();
private HashSet<StripElements> m_neverShowElements = new();
private HashSet<StripElements> m_alwaysShowElements = new(new[] { StripElements.None });
private HashSet<StripElements> m_neverShowElements = new(new[] { StripElements.None });
private HashSet<uint> m_ignoreStripsIndexes = new();

public OsdOptions()
Expand Down

0 comments on commit 37b955b

Please sign in to comment.