mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed override autocomplete on enter
This commit is contained in:
parent
61b38b06c5
commit
9ecc42aabc
1 changed files with 1 additions and 1 deletions
|
@ -2967,7 +2967,7 @@ namespace IDE.ui
|
|||
return;
|
||||
}
|
||||
|
||||
bool isExplicitInsert = (keyChar == '\0') || (keyChar == '\t') || (keyChar == '\n');
|
||||
bool isExplicitInsert = (keyChar == '\0') || (keyChar == '\t') || (keyChar == '\n') || (keyChar == '\r');
|
||||
|
||||
String insertText = entry.mEntryInsert ?? entry.mEntryDisplay;
|
||||
if ((!isExplicitInsert) && (insertText.Contains('\t')))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue