|
From: creedon <icr...@us...> - 2005-12-29 02:26:09
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31281 Modified Files: shellkb.c Log Message: fix for command-option-u not finding its item in its menubar, if option key is down bail out of shellfilterfontkey function, see < http://sourceforge.net/tracker/index.php?func=detail&aid=1391832&group_id=120666&atid=687798 > Index: shellkb.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/shellkb.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shellkb.c 28 Dec 2005 03:06:39 -0000 1.6 --- shellkb.c 29 Dec 2005 02:26:01 -0000 1.7 *************** *** 49,52 **** --- 49,54 ---- /* + 2005-12-28 lawton, creedon : if option key is down bail out, allows command-option-u to find its item in its menubar + filter cmd-shift-B,I,U,O,S to a style-menu item. */ *************** *** 55,59 **** register short ixmenu; ! if ((!keyboardstatus.flcmdkey) || (!keyboardstatus.flshiftkey)) return (false); --- 57,61 ---- register short ixmenu; ! if ((!keyboardstatus.flcmdkey) || (!keyboardstatus.flshiftkey) || keyboardstatus.floptionkey) return (false); |