|
From: John M M. <jo...@us...> - 2002-09-27 20:00:44
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory usw-pr-cvs1:/tmp/cvs-serv14527/squeak/platforms/Mac OS/vm
Modified Files:
sqMacUIMenuBar.c
Log Message:
3.2.8b8 Jaguar 10.2 broke how menubars are hidden/shown on cmd-tab. This is a 10.2 bug, a fix has been made to work around the bug. Should be backwards compatible with 10.1.x
Index: sqMacUIMenuBar.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacUIMenuBar.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** sqMacUIMenuBar.c 23 Feb 2002 11:26:06 -0000 1.2
--- sqMacUIMenuBar.c 27 Sep 2002 20:00:41 -0000 1.3
***************
*** 37,40 ****
--- 37,41 ----
if (menuBarRegion != nil) return; /* saved state, so menu bar is already hidden */
menuBarRegion = (RgnHandle) 1;
+ ShowMenuBar();
HideMenuBar();
}
|