mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 04:52:21 +02:00
Fixed ctrl+backspace during autocomplete
This commit is contained in:
parent
03e09c4322
commit
1117aa9b8a
1 changed files with 2 additions and 0 deletions
|
@ -2280,6 +2280,8 @@ namespace IDE.ui
|
||||||
|
|
||||||
if ((mAutoComplete.mUncertain) && (keyChar != '\t'))
|
if ((mAutoComplete.mUncertain) && (keyChar != '\t'))
|
||||||
doAutocomplete = false;
|
doAutocomplete = false;
|
||||||
|
if (keyChar == '\x7b') /* Ctrl+Backspace */
|
||||||
|
doAutocomplete = false;
|
||||||
|
|
||||||
if (doAutocomplete)
|
if (doAutocomplete)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue