Fix "Enter" in wxComboBox with wxTE_PROCESS_ENTER in wxMSW

Activate the default button of the dialog containing the wxComboBox if
wxEVT_TEXT_ENTER handler didn't process the even, just as it was already
done for wxTextCtrl.

See #18273.
This commit is contained in:
Vadim Zeitlin
2019-07-14 01:34:23 +02:00
parent c43e0fa123
commit ef03d3bb93

View File

@@ -243,6 +243,9 @@ bool wxComboBox::MSWProcessEditSpecialKey(WXWPARAM vkey)
// beep if it gets it
return true;
}
if ( ClickDefaultButtonIfPossible() )
return true;
}
break;