]> Pileus Git - ~andy/gtk/commitdiff
Don't treat Alt-Enter specially. It does not have any special meaning and
authorTor Lillqvist <tml@novell.com>
Thu, 13 Oct 2005 07:21:00 +0000 (07:21 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Thu, 13 Oct 2005 07:21:00 +0000 (07:21 +0000)
2005-10-13  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't treat
Alt-Enter specially. It does not have any special meaning and
should be passed on to the application. (#318378, Tim Evans)

ChangeLog
ChangeLog.pre-2-10
gdk/win32/gdkevents-win32.c

index 5eaa44f32a3f28c44c1d89444876c509f09d6f03..62b242a3326e977f4eb8453c56f825bf6f98df6b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-10-13  Tor Lillqvist  <tml@novell.com>
+
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't treat
+       Alt-Enter specially. It does not have any special meaning and
+       should be passed on to the application. (#318378, Tim Evans)
+
 2005-10-13  Tor Lillqvist  <tml@novell.com>
 
        Set visual depth to 24 for 32 bits-per-pixel devices on
index 5eaa44f32a3f28c44c1d89444876c509f09d6f03..62b242a3326e977f4eb8453c56f825bf6f98df6b 100644 (file)
@@ -1,3 +1,9 @@
+2005-10-13  Tor Lillqvist  <tml@novell.com>
+
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't treat
+       Alt-Enter specially. It does not have any special meaning and
+       should be passed on to the application. (#318378, Tim Evans)
+
 2005-10-13  Tor Lillqvist  <tml@novell.com>
 
        Set visual depth to 24 for 32 bits-per-pixel devices on
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;