UIViewPager fixes.

Fixed structural pseudo-classes states in some specific scenario.
This commit is contained in:
Martín Lucas Golini
2020-02-28 23:58:00 -03:00
parent cd34f7f4e4
commit d4cf1efc7f
16 changed files with 95 additions and 24 deletions

View File

@@ -6,7 +6,9 @@ UIRelativeLayout* UIRelativeLayout::New() {
return eeNew( UIRelativeLayout, () );
}
UIRelativeLayout::UIRelativeLayout() : UILayout( "relativelayout" ) {}
UIRelativeLayout::UIRelativeLayout() : UILayout( "relativelayout" ) {
mFlags |= UI_OWNS_CHILDS_POSITION;
}
Uint32 UIRelativeLayout::getType() const {
return UI_TYPE_RELATIVE_LAYOUT;