only multiline text controls need Enter key for themselves

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-08-04 11:35:42 +00:00
parent a8eb5f886d
commit eedf954b20

View File

@@ -1809,7 +1809,7 @@ bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG* msg)
// fall through
case 0:
if ( vkey == VK_RETURN )
if ( IsMultiLine() && vkey == VK_RETURN )
return false;
// fall through
case 2: