Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2013-11-24 11:25:42 +0400
committerLluis Sanchez <lluis@xamarin.com>2013-11-24 11:25:42 +0400
commitd2bc4312be5e2a57a9ffb2a56f6388d65397c054 (patch)
treeb442bc7c227691a877f90a80a21cd75cbd9715ae /Testing/Tests
parent305df6f5e697f239a1dfd8b1ddc249ddf96aa4cb (diff)
[Max] Fix several Label alignment issues
Diffstat (limited to 'Testing/Tests')
-rw-r--r--Testing/Tests/ReferenceImageManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Testing/Tests/ReferenceImageManager.cs b/Testing/Tests/ReferenceImageManager.cs
index e43c8699..548880d4 100644
--- a/Testing/Tests/ReferenceImageManager.cs
+++ b/Testing/Tests/ReferenceImageManager.cs
@@ -155,7 +155,7 @@ namespace Xwt
var bmpr = res.ToBitmap ();
res.Dispose ();
for (int y=0; y<bmp1.Size.Height && y < bmp2.Size.Height; y++) {
- for (int x=0; x<bmp1.Size.Width && x<bmp2.Size.Height; x++) {
+ for (int x=0; x<bmp1.Size.Width && x<bmp2.Size.Width; x++) {
var p1 = bmp1.GetPixel (x, y);
var p2 = bmp2.GetPixel (x, y);
var col = Colors.White;