From: Richard K. <ric...@us...> - 2005-05-27 20:54:10
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19092 Modified Files: NSView.as Log Message: inverse m_mcBounds _x and _y from mcBounds.origin Index: NSView.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSView.as,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** NSView.as 27 May 2005 01:33:06 -0000 1.15 --- NSView.as 27 May 2005 20:53:52 -0000 1.16 *************** *** 215,220 **** private function updateBoundsMovieClip():Void { if (m_bounds != undefined) { ! m_mcBounds._x = m_bounds.origin.x; ! m_mcBounds._y = m_bounds.origin.y; } } --- 215,220 ---- private function updateBoundsMovieClip():Void { if (m_bounds != undefined) { ! m_mcBounds._x = -m_bounds.origin.x; ! m_mcBounds._y = -m_bounds.origin.y; } } |