re-enable enter key in example browser

This commit is contained in:
Erwin Coumans
2015-08-04 22:03:53 -07:00
parent b316f30040
commit 250068d5eb
3 changed files with 6 additions and 12 deletions

View File

@@ -528,6 +528,11 @@ bool GwenUserInterface::keyboardCallback(int bulletKey, int state)
//convert 'Bullet' keys into 'Gwen' keys
switch (bulletKey)
{
case B3G_RETURN:
{
gwenKey = Gwen::Key::Return;
break;
}
case B3G_LEFT_ARROW:
{
gwenKey = Gwen::Key::Left;