diff --git a/ChangeLog b/ChangeLog index 366ee2aa04743c2dc19fe00b75f5efb65c277533..6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-05-23 Tor Lillqvist + * 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 diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 366ee2aa04743c2dc19fe00b75f5efb65c277533..6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2005-05-23 Tor Lillqvist + * 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 diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 366ee2aa04743c2dc19fe00b75f5efb65c277533..6cfd9fa0ecdaf2d8e73136b242e570abe4aeb21f 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,8 @@ 2005-05-23 Tor Lillqvist + * 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 diff --git a/gdk/win32/gdkkeys-win32.c b/gdk/win32/gdkkeys-win32.c index 1c91fe75c3c3ec128ffb13d516019fb65b75a6d8..ee144d9fe4f57f1034834bf86aff19a8b0e9b7c0 100644 --- a/gdk/win32/gdkkeys-win32.c +++ b/gdk/win32/gdkkeys-win32.c @@ -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: