Commit e6bdef2a authored by Jason Edmeades's avatar Jason Edmeades Committed by Alexandre Julliard

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

parent 7ec04452
......@@ -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 }
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment