Fix bug: the Back button in Node: UI->UIEditBoxTests click area has positoin offset.

This commit is contained in:
Vincent Yang 2015-07-17 15:52:58 +08:00
parent a72ea73e60
commit f9e90f31f6
1 changed files with 0 additions and 5 deletions

View File

@ -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;