2010-03-25 Mike Kestner <mkestner@novell.com>

* gdk/Rectangle.custom: off-by-one in Right/Bottom. [Fixes #591148]

svn path=/trunk/gtk-sharp/; revision=154205
This commit is contained in:
Mike Kestner 2010-03-25 15:57:47 +00:00
parent 3e4e156765
commit e2ee3523de
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-03-25 Mike Kestner <mkestner@novell.com>
* gdk/Rectangle.custom: off-by-one in Right/Bottom. [Fixes #591148]
2009-12-28 Mike Kestner <mkestner@novell.com> 2009-12-28 Mike Kestner <mkestner@novell.com>
* glib/glue/Makefile.am: fix a copy/paste issue. * glib/glue/Makefile.am: fix a copy/paste issue.

View File

@ -121,10 +121,10 @@ public int Top {
get { return Y; } get { return Y; }
} }
public int Bottom { public int Bottom {
get { return Y + Height; } get { return Y + Height - 1; }
} }
public int Right { public int Right {
get { return X + Width; } get { return X + Width - 1; }
} }
public int Left { public int Left {
get { return X; } get { return X; }