From: Richard K. <ric...@us...> - 2005-05-17 02:30:12
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22956 Modified Files: NSControl.as Log Message: moved the definition of the bounds to the m_trackingData Index: NSControl.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSControl.as,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NSControl.as 12 May 2005 19:38:26 -0000 1.6 --- NSControl.as 17 May 2005 02:30:04 -0000 1.7 *************** *** 430,434 **** | NSEvent.NSMouseMovedMask | NSEvent.NSOtherMouseDraggedMask | NSEvent.NSRightMouseDraggedMask, mouseUp: false, ! complete: false }; mouseTrackingCallback(event); --- 430,435 ---- | NSEvent.NSMouseMovedMask | NSEvent.NSOtherMouseDraggedMask | NSEvent.NSRightMouseDraggedMask, mouseUp: false, ! complete: false, ! bounds: m_bounds }; mouseTrackingCallback(event); *************** *** 461,465 **** m_cell.setHighlighted(true); setNeedsDisplay(true); ! m_cell.trackMouseInRectOfViewUntilMouseUp(event, m_bounds, this, m_cell.getClass().prefersTrackingUntilMouseUp()); return; } --- 462,466 ---- m_cell.setHighlighted(true); setNeedsDisplay(true); ! m_cell.trackMouseInRectOfViewUntilMouseUp(event, m_trackingData.bounds, this, m_cell.getClass().prefersTrackingUntilMouseUp()); return; } |