From: Richard K. <ric...@us...> - 2005-05-17 03:00:14
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12316 Modified Files: NSView.as Log Message: optimize setFrameOrigin Index: NSView.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSView.as,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** NSView.as 15 May 2005 04:28:16 -0000 1.4 --- NSView.as 16 May 2005 04:42:23 -0000 1.5 *************** *** 493,497 **** m_frame.origin.x = origin.x; m_frame.origin.y = origin.y; ! updateFrameMovieClipSize(); if(m_postsFrameChangeNotifications) { m_notificationCenter.postNotificationWithNameObject(NSViewFrameDidChangeNotification, this); --- 493,500 ---- m_frame.origin.x = origin.x; m_frame.origin.y = origin.y; ! if (m_mcFrame != null) { ! m_mcFrame._x = m_frame.origin.x; ! m_mcFrame._y = m_frame.origin.y; ! } if(m_postsFrameChangeNotifications) { m_notificationCenter.postNotificationWithNameObject(NSViewFrameDidChangeNotification, this); |