1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 22:34:09 +02:00

Better esc handing during f3 quickfind

This commit is contained in:
Brian Fiete 2020-11-30 07:39:43 -08:00
parent 1efd403472
commit e93c44703b

View file

@ -778,6 +778,8 @@ namespace IDE.ui
if (IDEApp.sApp.mSymbolReferenceHelper != null) if (IDEApp.sApp.mSymbolReferenceHelper != null)
{ {
IDEApp.sApp.mSymbolReferenceHelper.Cancel(); IDEApp.sApp.mSymbolReferenceHelper.Cancel();
// If we press F3 and find a symbol, we want esc to close both the symbol reference and the quickfind
if (mQuickFind == null)
return true; return true;
} }