From: Scott H. <sco...@us...> - 2005-07-20 15:14:31
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19350/src/org/actionstep Modified Files: NSMatrix.as Log Message: commented out some traces added some //! to remind me to implement some things added a comment or two Index: NSMatrix.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSMatrix.as,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** NSMatrix.as 20 Jul 2005 15:04:46 -0000 1.24 --- NSMatrix.as 20 Jul 2005 15:14:18 -0000 1.25 *************** *** 2424,2432 **** if (mods & NSEvent.NSShiftKeyMask) { ! } else if (mods & NSEvent.NSAlternateKeyMask) { ! } else --- 2424,2432 ---- if (mods & NSEvent.NSShiftKeyMask) { ! //! implement } else if (mods & NSEvent.NSAlternateKeyMask) { ! //! implement } else *************** *** 2464,2468 **** selectPreviousSelectableCellAfterRowColumn(m_selcell_row, m_selcell_column); - return; } else --- 2464,2467 ---- *************** *** 2470,2475 **** selectNextSelectableCellAfterRowColumn(m_selcell_row, m_selcell_column); - return; } } --- 2469,2475 ---- selectNextSelectableCellAfterRowColumn(m_selcell_row, m_selcell_column); } + + return; // MUST have this (to indicate the key was handled) } *************** *** 2588,2592 **** if (columns > oldMaxC) { ! TRACE("columns > oldMaxC"); var end:Number = columns; --- 2588,2592 ---- if (columns > oldMaxC) { ! //TRACE("columns > oldMaxC"); var end:Number = columns; *************** *** 2623,2627 **** if (rows > oldMaxR) { ! TRACE("rows > oldMaxR"); var end:Number = rows - 1; --- 2623,2627 ---- if (rows > oldMaxR) { ! //TRACE("rows > oldMaxR"); var end:Number = rows - 1; |