Map VK_APPS to GDK_Menu. (#172383, Ivan Wong)

2005-05-23  Tor Lillqvist  <tml@novell.com>

	* gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
	GDK_Menu. (#172383, Ivan Wong)
This commit is contained in:
Tor Lillqvist 2005-05-22 22:28:39 +00:00 committed by Tor Lillqvist
parent 92b97da841
commit 7f2ad4a885
4 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-05-23 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
GDK_Menu. (#172383, Ivan Wong)
* gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
of the special cases this function takes care of, use it as
such. This takes care of for instance the Bengali Virama, see bug

View File

@ -1,5 +1,8 @@
2005-05-23 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
GDK_Menu. (#172383, Ivan Wong)
* gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
of the special cases this function takes care of, use it as
such. This takes care of for instance the Bengali Virama, see bug

View File

@ -1,5 +1,8 @@
2005-05-23 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
GDK_Menu. (#172383, Ivan Wong)
* gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
of the special cases this function takes care of, use it as
such. This takes care of for instance the Bengali Virama, see bug

View File

@ -144,6 +144,8 @@ handle_special (guint vk,
*ksymp = GDK_Meta_L; break;
case VK_RWIN:
*ksymp = GDK_Meta_R; break;
case VK_APPS:
*ksymp = GDK_Menu; break;
case VK_MULTIPLY:
*ksymp = GDK_KP_Multiply; break;
case VK_ADD: