mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-02-07 02:52:42 +08:00
tune
This commit is contained in:
@@ -4360,7 +4360,7 @@ static int mTextEditor_onChar(mTextEditor *self, WPARAM eucCode, DWORD keyFlags)
|
||||
if (!TE_VALID_OBJ(self) || _read_only(self) || (keyFlags & KS_CTRL))
|
||||
return 0;
|
||||
|
||||
if(eucCode == 127 || eucCode == '\b') {
|
||||
if (eucCode == 127 || eucCode == '\b') {
|
||||
_remove_chars(self, TRUE);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user