|
From: John M M. <jo...@us...> - 2002-03-19 21:33:36
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory usw-pr-cvs1:/tmp/cvs-serv3192/squeak/platforms/Mac OS/vm
Modified Files:
sqMacMain.c
Log Message:
3.2.6b8 remove call to setup keyboard logic. This was to decouple the shift key, but it seems it causes problems for some macs after awaking from a deep sleep.
Index: sqMacMain.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacMain.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** sqMacMain.c 15 Mar 2002 01:44:07 -0000 1.5
--- sqMacMain.c 19 Mar 2002 21:33:33 -0000 1.6
***************
*** 12,15 ****
--- 12,16 ----
* Feb 22nd, 2002, JMM moved code into 10 other files, see sqMacMain.c for comments
* Mar 8th, 2002, JMM UI locking for applescript under os-x
+ * Mar 17th, 2002, JMM look into sleep wakeup issues under os-9 on some computers.
****************************************************************************/
***************
*** 293,297 ****
InitCursor();
LoadScrap();
! SetupKeyboard();
}
#endif
--- 294,298 ----
InitCursor();
LoadScrap();
! //JMM causes sleep wakeup issues. SetupKeyboard();
}
#endif
|