diff options
author | das <das> | 2006-12-01 07:13:00 (GMT) |
---|---|---|
committer | das <das> | 2006-12-01 07:13:00 (GMT) |
commit | 2bb1590cb848832772cfdc9474090903d4790aa2 (patch) | |
tree | 1727761a632d5ce53615cea53c7638df2ee13446 /macosx/tkMacOSXDialog.c | |
parent | 9c00f95076d88ab3a267b232e9ab714c95287ef0 (diff) | |
download | tk-2bb1590cb848832772cfdc9474090903d4790aa2.zip tk-2bb1590cb848832772cfdc9474090903d4790aa2.tar.gz tk-2bb1590cb848832772cfdc9474090903d4790aa2.tar.bz2 |
* macosx/tkMacOSXDialog.c (Tk_MessageBoxObjCmd): fix inability to use
buttons with standard Escape key binding as -default button (reported
on tcl-mac by Hans-Christoph Steiner).
Diffstat (limited to 'macosx/tkMacOSXDialog.c')
-rw-r--r-- | macosx/tkMacOSXDialog.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c index 5880b48..8d0b7c5 100644 --- a/macosx/tkMacOSXDialog.c +++ b/macosx/tkMacOSXDialog.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXDialog.c,v 1.20 2006/04/11 12:05:50 das Exp $ + * RCS: @(#) $Id: tkMacOSXDialog.c,v 1.21 2006/12/01 07:13:00 das Exp $ */ #include "tkMacOSXInt.h" @@ -1535,6 +1535,9 @@ Tk_MessageBoxObjCmd( goto end; } paramCFStringRec.defaultButton = defaultNativeButtonIndex; + if (paramCFStringRec.cancelButton == defaultNativeButtonIndex) { + paramCFStringRec.cancelButton = 0; + } } SetThemeCursor(kThemeArrowCursor); |