mirror of https://github.com/axmolengine/axmol.git
Fix bug: the Back button in Node: UI->UIEditBoxTests click area has positoin offset.
This commit is contained in:
parent
a72ea73e60
commit
f9e90f31f6
|
@ -83,16 +83,11 @@ bool UIEditBoxTest::init()
|
|||
// bottom
|
||||
_editEmail = ui::EditBox::create(Size(editBoxSize.width, editBoxSize.height), "extensions/yellow_edit.png");
|
||||
_editEmail->setPosition(Vec2(visibleOrigin.x+visibleSize.width/2, visibleOrigin.y+visibleSize.height/4));
|
||||
_editEmail->setAnchorPoint(Vec2(0.5, 1.0f));
|
||||
_editEmail->setPlaceHolder("Email:");
|
||||
_editEmail->setInputMode(ui::EditBox::InputMode::EMAIL_ADDRESS);
|
||||
_editEmail->setDelegate(this);
|
||||
addChild(_editEmail);
|
||||
|
||||
this->setPosition(Vec2(10, 20));
|
||||
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue