Commit 05d36b60 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_output/x11/xcommon.c, modules/video_output/directx/events.c:...

* modules/video_output/x11/xcommon.c, modules/video_output/directx/events.c: added support for insert/delete hotkeys.
parent 5e5bf285
......@@ -853,6 +853,9 @@ static struct
{ VK_PRIOR, KEY_PAGEUP },
{ VK_NEXT, KEY_PAGEDOWN },
{ VK_INSERT, KEY_INSERT },
{ VK_DELETE, KEY_DELETE },
{ VK_CONTROL, 0 },
{ VK_SHIFT, 0 },
{ VK_MENU, 0 },
......
......@@ -2331,6 +2331,10 @@ static struct
{ XK_End, KEY_END },
{ XK_Page_Up, KEY_PAGEUP },
{ XK_Page_Down, KEY_PAGEDOWN },
{ XK_Insert, KEY_INSERT },
{ XK_Delete, KEY_DELETE },
{ 0, 0 }
};
......
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