1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-22 01:37:59 +02:00

Path selection autocomplete improvements

This commit is contained in:
Brian Fiete 2020-09-25 06:31:21 -07:00
parent e12a2562b6
commit dc2603bc60
2 changed files with 14 additions and 4 deletions

View file

@ -1156,6 +1156,12 @@ namespace IDE.ui
protected void HandleSubmit(EditEvent theEvent)
{
if ((mPropEditWidget != null) && (var sewc = mPropEditWidget.mEditWidgetContent as SourceEditWidgetContent))
{
if (sewc.mAutoComplete != null)
return;
}
HandleEditLostFocus((EditWidget)theEvent.mSender);
}