1
0
Fork 0
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:
Brian Fiete 2025-01-22 08:15:22 -08:00
parent 61b38b06c5
commit 9ecc42aabc

View file

@ -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')))