mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
kernel32: In edit line, fix the insert key management.
This commit is contained in:
parent
a2e11b452a
commit
5f2370b0aa
1 changed files with 1 additions and 1 deletions
|
@ -788,7 +788,6 @@ static const KeyEntry StdKeyMap[] =
|
|||
{/*BACK*/0x08, WCEL_DeletePrevChar },
|
||||
{/*RETURN*/0x0d, WCEL_Done },
|
||||
{/*DEL*/127, WCEL_DeleteCurrChar },
|
||||
{/*VK_INSERT*/0x2d, WCEL_ToggleInsert },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
|
@ -850,6 +849,7 @@ static const KeyEntry EmacsStdKeyMap[] =
|
|||
{/*VK_RIGHT*/0x27, WCEL_MoveRight },
|
||||
{/*VK_LEFT*/ 0x25, WCEL_MoveLeft },
|
||||
{/*VK_DEL*/ 0x2e, WCEL_DeleteCurrChar },
|
||||
{/*VK_INSERT*/0x2d, WCEL_ToggleInsert },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue