2006-06-01 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Thu, 1 Jun 2006 20:23:22 +0000 (20:23 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Thu, 1 Jun 2006 20:23:22 +0000 (20:23 -0000)
* TestHatchBrush.cs: Some were surprisingly similar until...

svn path=/trunk/mcs/; revision=61385

mcs/class/System.Drawing/Test/System.Drawing.Drawing2D/ChangeLog
mcs/class/System.Drawing/Test/System.Drawing.Drawing2D/TestHatchBrush.cs

index 18811e28e34a3b5d407a76b4c5280aa5f3ed5fe7..80a187a7c5586fca3c17129687574cf662713b1c 100644 (file)
@@ -1,3 +1,7 @@
+2006-06-01  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * TestHatchBrush.cs: Some were surprisingly similar until...
+
 2006-05-24  Sebastien Pouliot  <sebastien@ximian.com>
 
        * GraphicsPathTest.cs: Ignore some test cases that aren't implemented 
index 1972f82c7cc6a8605dad29ef2ecb36b6358f488d..dcc62395fc2ef9f73600c4a45e0a891408ecab8a 100644 (file)
@@ -460,7 +460,7 @@ namespace MonoTests.System.Drawing.Drawing2D
                        gr.DrawString ("Test #37 80Percent", font, br, textStart, top);
                        
                        top += spacing;
-                       pen = new Pen (new HatchBrush (HatchStyle.Percent70, fgColor, bgColor), penWidth);
+                       pen = new Pen (new HatchBrush (HatchStyle.Percent80, fgColor, bgColor), penWidth);
                        gr.DrawLine (pen, lineStart, top, lineStart + length, top);
 
                        // #38
@@ -468,7 +468,7 @@ namespace MonoTests.System.Drawing.Drawing2D
                        gr.DrawString ("Test #38 90Percent", font, br, textStart, top);
                        
                        top += spacing;
-                       pen = new Pen (new HatchBrush (HatchStyle.Percent70, fgColor, bgColor), penWidth);
+                       pen = new Pen (new HatchBrush (HatchStyle.Percent90, fgColor, bgColor), penWidth);
                        gr.DrawLine (pen, lineStart, top, lineStart + length, top);
 
                        // #39