Commit 1891e507 authored by Olivier Teulière's avatar Olivier Teulière

* skins2/win32/win32_loop.cpp: Added support for the Insert and Delete keys

parent bb010625
......@@ -66,6 +66,8 @@ Win32Loop::Win32Loop( intf_thread_t *pIntf ): OSLoop( pIntf )
virtKeyToVlcKey[VK_RIGHT] = KEY_RIGHT;
virtKeyToVlcKey[VK_UP] = KEY_UP;
virtKeyToVlcKey[VK_DOWN] = KEY_DOWN;
virtKeyToVlcKey[VK_INSERT] = KEY_INSERT;
virtKeyToVlcKey[VK_DELETE] = KEY_DELETE;
virtKeyToVlcKey[VK_HOME] = KEY_HOME;
virtKeyToVlcKey[VK_END] = KEY_END;
virtKeyToVlcKey[VK_PRIOR] = KEY_PAGEUP;
......
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