]> Pileus Git - ~andy/gtk/blobdiff - gdk/win32/gdkevents-win32.c
Don't treat Alt-Enter specially. It does not have any special meaning and
[~andy/gtk] / gdk / win32 / gdkevents-win32.c
index 89dc4c85767466d930d7a31f0dfa1672c58bf1ae..58777b7a0f86729de901181a08b28c2d40ca6bac 100644 (file)
@@ -2421,13 +2421,12 @@ gdk_event_translate (MSG  *msg,
          !(HIWORD (msg->lParam) & KF_ALTDOWN))
        break;
 
-      /* Let the system handle Alt-Tab, Alt-Space, Alt-Enter and
-       * Alt-F4 unless the keyboard is grabbed.
+      /* Let the system handle Alt-Tab, Alt-Space and Alt-F4 unless
+       * the keyboard is grabbed.
        */
       if (k_grab_window == NULL &&
          (msg->wParam == VK_TAB ||
           msg->wParam == VK_SPACE ||
-          msg->wParam == VK_RETURN ||
           msg->wParam == VK_F4))
        break;