diff options
author | das <das> | 2006-07-25 12:09:05 (GMT) |
---|---|---|
committer | das <das> | 2006-07-25 12:09:05 (GMT) |
commit | 4b65d8f23ccb54e81ff95fbab4cf72cac125145f (patch) | |
tree | 3d32f4066b3f8f21b1bc9a2a11e7977cbb748bff | |
parent | 817276f91d05d54320ee23a9bf9a0ffb3c930e72 (diff) | |
download | tk-4b65d8f23ccb54e81ff95fbab4cf72cac125145f.zip tk-4b65d8f23ccb54e81ff95fbab4cf72cac125145f.tar.gz tk-4b65d8f23ccb54e81ff95fbab4cf72cac125145f.tar.bz2 |
* macosx/tkMacOSXKeyEvent.c (TkMacOSXProcessKeyboardEvent): handle key
shortcut for kHICommandQuit in the same way as other application menu
item key shortcuts. [Bug 1516950]
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | macosx/tkMacOSXKeyEvent.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2006-07-25 Daniel Steffen <das@users.sourceforge.net> + + * macosx/tkMacOSXKeyEvent.c (TkMacOSXProcessKeyboardEvent): handle key + shortcut for kHICommandQuit in the same way as other application menu + item key shortcuts. [Bug 1516950] + 2006-07-24 Daniel Steffen <das@users.sourceforge.net> * macosx/tkMacOSXWm.c (TkWmMapWindow): fix incorrect values of wmInfo diff --git a/macosx/tkMacOSXKeyEvent.c b/macosx/tkMacOSXKeyEvent.c index 3a48fa0..692c194 100644 --- a/macosx/tkMacOSXKeyEvent.c +++ b/macosx/tkMacOSXKeyEvent.c @@ -54,7 +54,7 @@ * software in accordance with the terms specified in this * license. * - * RCS: @(#) $Id: tkMacOSXKeyEvent.c,v 1.6.2.10 2006/07/20 06:27:34 das Exp $ + * RCS: @(#) $Id: tkMacOSXKeyEvent.c,v 1.6.2.11 2006/07/25 12:09:05 das Exp $ */ #include "tkMacOSXInt.h" @@ -194,6 +194,7 @@ TkMacOSXProcessKeyboardEvent( case kHICommandHideOthers: case kHICommandShowAll: case kHICommandPreferences: + case kHICommandQuit: statusPtr->stopProcessing = 0; return 0; /* TODO: may not be on event on queue. */ break; |