Skip to content

Commit

Permalink
corrected test patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
mgth committed Jul 4, 2019
1 parent 9d8c919 commit 19f23b3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions LittleBigMouse/Plugin/Vcp/VcpScreenViewModel.cs
Expand Up @@ -47,11 +47,13 @@ public VcpScreenViewModel()
{
Initialize();

TestPatterns.Add(_getButtonPattern(this).Set(TestPatternType.Circles).Set(Color.FromRgb(5,5,5), Colors.Black));
TestPatterns.Add(_getButtonPattern(this).Set(TestPatternType.Circles).Set(Color.FromRgb(250,250,250),Colors.White ));
TestPatterns.Add(_getButtonPattern(this).Set(TestPatternType.Circles).Set(Colors.White, Colors.Black));
TestPatterns.Add(_getButtonPattern(this).Set(TestPatternType.Circle).Set(Color.FromRgb(0xFF,0x80,0x00),Colors.Black) );
TestPatterns.Add(_getButtonPattern(this).Set(TestPatternType.Gradient).SetRgb() );
TestPatterns.Add(_getButtonPattern(this).Set(TestPatternType.Gamma).Set(Orientation.Vertical).SetRgb() );
TestPatterns.Add(_getButtonPattern(this)
.Set(TestPatternType.Gamma)
.Set(Colors.White,Colors.Black)
.Set(Orientation.Vertical).SetRgb());

}

Expand Down

0 comments on commit 19f23b3

Please sign in to comment.