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:
parent
e62104a7d1
commit
5879469933
2 changed files with 13 additions and 9 deletions
|
@ -2059,6 +2059,10 @@ namespace IDE.ui
|
|||
{
|
||||
scope AutoBeefPerf("SEWC.KeyChar");
|
||||
|
||||
var keyChar;
|
||||
if (keyChar == '\x7F') // Ctrl+Backspace
|
||||
keyChar = '\b';
|
||||
|
||||
if (mIgnoreKeyChar)
|
||||
{
|
||||
mIgnoreKeyChar = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue