diff options
author | wordtech <wordtech> | 2011-01-06 08:05:05 (GMT) |
---|---|---|
committer | wordtech <wordtech> | 2011-01-06 08:05:05 (GMT) |
commit | 42a81371d3c685306021a717dd79d0f0faa1e199 (patch) | |
tree | c68857dc5d281cae576dca514a840a29d3e2d9f1 /macosx | |
parent | 0073223922e3f2ce1c15c501de3c84196b5972da (diff) | |
download | tk-42a81371d3c685306021a717dd79d0f0faa1e199.zip tk-42a81371d3c685306021a717dd79d0f0faa1e199.tar.gz tk-42a81371d3c685306021a717dd79d0f0faa1e199.tar.bz2 |
Fix for radiobuttons and checkbuttons not displaying in popup menus.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXMenu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/tkMacOSXMenu.c b/macosx/tkMacOSXMenu.c index 5c40ed8..42064ae 100644 --- a/macosx/tkMacOSXMenu.c +++ b/macosx/tkMacOSXMenu.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.55 2011/01/06 04:44:51 wordtech Exp $ + * RCS: @(#) $Id: tkMacOSXMenu.c,v 1.56 2011/01/06 08:05:05 wordtech Exp $ */ #include "tkMacOSXPrivate.h" @@ -753,6 +753,7 @@ TkpPostMenu( NSPopUpButtonCell *popUpButtonCell = [[NSPopUpButtonCell alloc] initTextCell:@"" pullsDown:NO]; + [popUpButtonCell setAltersStateOfSelectedItem:NO]; [popUpButtonCell setMenu:menu]; [popUpButtonCell selectItem:nil]; [popUpButtonCell performClickWithFrame:frame inView:view]; |