Fix hanging when switching focus between different editable comboboxes

This bug was fixed before with d1799c037abc011e79663892f52e0e2e0b5c5334 but
then returned with 549404c2166e2c78e841836efd6c543b0a8439ca
This commit is contained in:
David Capello 2015-08-24 11:37:35 -03:00
parent 549404c216
commit a0c2237839

View File

@ -364,11 +364,6 @@ bool ComboBox::onProcessMessage(Message* msg)
}
break;
case kFocusEnterMessage:
if (isEditable())
m_entry->requestFocus();
break;
}
return Widget::onProcessMessage(msg);