1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +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,7 +778,9 @@ namespace IDE.ui
if (IDEApp.sApp.mSymbolReferenceHelper != null)
{
IDEApp.sApp.mSymbolReferenceHelper.Cancel();
return true;
// 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;
}
if (base.EscapeHandler())