Fix in relative layout margins.

--HG--
branch : dev
This commit is contained in:
Martín Lucas Golini
2017-07-24 15:11:42 -03:00
parent 98c5e91b96
commit 34651aaced
2 changed files with 5 additions and 5 deletions

View File

@@ -111,7 +111,7 @@ void UIRelativeLayout::fixChildPos( UIWidget * widget ) {
break;
case UI_VALIGN_TOP:
default:
pos.y = widget->getLayoutMargin().Left;
pos.y = widget->getLayoutMargin().Top;
break;
}
}