mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:35:34 +00:00
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:
parent
3e4e156765
commit
e2ee3523de
|
@ -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.
|
||||||
|
|
|
@ -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; }
|
||||||
|
|
Loading…
Reference in a new issue