Don't treat Alt-Enter specially. It does not have any special meaning and
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)
This commit is contained in:
parent
b25e6c5b05
commit
d297ff329f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user