summaryrefslogtreecommitdiffstats
path: root/mac/tkMacWindowMgr.c
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-12-07 03:04:51 (GMT)
committerhobbs <hobbs>1999-12-07 03:04:51 (GMT)
commit9efd546ed39b727a4489f69da3e0966570c4d513 (patch)
treebfe2ca0acb6f427a619fad5967338f64cd2e7d75 /mac/tkMacWindowMgr.c
parent30aa80864ab882d2a31442f73b202117a606654a (diff)
downloadtk-9efd546ed39b727a4489f69da3e0966570c4d513.zip
tk-9efd546ed39b727a4489f69da3e0966570c4d513.tar.gz
tk-9efd546ed39b727a4489f69da3e0966570c4d513.tar.bz2
* mac/tkMacFont.c:
* mac/tkMacMenu.c: * mac/tkMacWindowMgr.c: fixed greyed out menu items, handling of ... elipsis, font mapping problem, and enabled generated menu posting [Bug: 3705]
Diffstat (limited to 'mac/tkMacWindowMgr.c')
-rw-r--r--mac/tkMacWindowMgr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mac/tkMacWindowMgr.c b/mac/tkMacWindowMgr.c
index 48ada11..81bda7a 100644
--- a/mac/tkMacWindowMgr.c
+++ b/mac/tkMacWindowMgr.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacWindowMgr.c,v 1.4 1999/04/16 01:51:32 stanton Exp $
+ * RCS: @(#) $Id: tkMacWindowMgr.c,v 1.5 1999/12/07 03:04:52 hobbs Exp $
*/
#include <Events.h>
@@ -207,10 +207,13 @@ WindowManagerMouse(
{
int oldMode;
KeyMap theKeys;
+ void TkpPreprocessMacMenu(void);
GetKeys(theKeys);
oldMode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
TkMacClearMenubarActive();
+ /* POSTCOMMAND??? */
+ TkpPreprocessMacMenu();
TkMacHandleMenuSelect(MenuSelect(eventPtr->where),
theKeys[1] & 4);
Tcl_SetServiceMode(oldMode);