This commit is contained in:
smallsql 2012-03-10 14:31:47 +00:00
Родитель 3d4dd768d1
Коммит 38de80d343
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -282,6 +282,10 @@ namespace ikvm.awt
internal static Region ConvertRegion(sun.java2d.pipe.Region shape)
{
if (shape == null)
{
return null;
}
if (shape.isRectangular())
{
int x = shape.getLoX();