* Rectangle.cs: Fixed ToString formatting code.
This commit is contained in:
parent
139b6af9fa
commit
92e2104c9d
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ namespace OpenTK
|
|||
/// <returns>A <see cref="System.String"/> that describes this instance.</returns>
|
||||
public override string ToString()
|
||||
{
|
||||
return String.Format("{{{0}, {1}}}-{{{2},{3}}}", Location, Size);
|
||||
return String.Format("{{{0}-{1}}}", Location, Location + Size);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue