summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXDialog.c
diff options
context:
space:
mode:
authordas <das>2006-12-01 07:13:13 (GMT)
committerdas <das>2006-12-01 07:13:13 (GMT)
commit9fec29d0295f77de0f3f5a4068c6dca990d9bdbc (patch)
tree145291c85ee7362870f5eee3e424d36b76b0865d /macosx/tkMacOSXDialog.c
parent2622dc5a039b5ce796944e568c900316e2b9294e (diff)
downloadtk-9fec29d0295f77de0f3f5a4068c6dca990d9bdbc.zip
tk-9fec29d0295f77de0f3f5a4068c6dca990d9bdbc.tar.gz
tk-9fec29d0295f77de0f3f5a4068c6dca990d9bdbc.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.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c
index 51d62b9..350f1fe 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.4.2.11 2006/04/11 12:05:18 das Exp $
+ * RCS: @(#) $Id: tkMacOSXDialog.c,v 1.4.2.12 2006/12/01 07:13:14 das Exp $
*/
#include "tkMacOSXInt.h"
@@ -1537,6 +1537,9 @@ Tk_MessageBoxObjCmd(
goto end;
}
paramCFStringRec.defaultButton = defaultNativeButtonIndex;
+ if (paramCFStringRec.cancelButton == defaultNativeButtonIndex) {
+ paramCFStringRec.cancelButton = 0;
+ }
}
SetThemeCursor(kThemeArrowCursor);