Skip to content
Snippets Groups Projects
Commit e6bdef2a authored by Jason Edmeades's avatar Jason Edmeades Committed by Alexandre Julliard
Browse files

Correct behaviour of DEL key back to deleting the current character.

parent 7ec04452
No related branches found
No related tags found
No related merge requests found
......@@ -664,7 +664,7 @@ static KeyEntry Win32KeyMapExtended[] =
{/*VK_END*/ 0x23, WCEL_MoveToEnd },
{/*VK_UP*/ 0x26, WCEL_MoveToPrevHist },
{/*VK_DOWN*/ 0x28, WCEL_MoveToNextHist },
{/*VK_DEL*/ 0x2e, WCEL_FindPrevInHist /*L_DeleteCurrChar*/ },
{/*VK_DEL*/ 0x2e, WCEL_DeleteCurrChar },
{ 0, NULL }
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment