1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed Ctrl+Backspace, fixed muiltiline clipping paste-then-undo error

This commit is contained in:
Brian Fiete 2020-04-10 08:57:45 -07:00
parent e62104a7d1
commit 5879469933
2 changed files with 13 additions and 9 deletions

View file

@ -2059,6 +2059,10 @@ namespace IDE.ui
{
scope AutoBeefPerf("SEWC.KeyChar");
var keyChar;
if (keyChar == '\x7F') // Ctrl+Backspace
keyChar = '\b';
if (mIgnoreKeyChar)
{
mIgnoreKeyChar = false;