зеркало из https://github.com/mozilla/pjs.git
Fixing leak caused by bug 457864
This commit is contained in:
Родитель
38a044c0b9
Коммит
237f49d5b5
|
@ -268,9 +268,11 @@ NS_IMETHODIMP nsScrollPortView::ScrollTo(nscoord aDestinationX, nscoord aDestina
|
|||
PRBool isSmoothScroll = (aUpdateFlags & NS_VMREFRESH_SMOOTHSCROLL) &&
|
||||
IsSmoothScrollingEnabled();
|
||||
|
||||
if (mAsyncScroll && mAsyncScroll->mIsSmoothScroll) {
|
||||
currentVelocityX = mAsyncScroll->mVelocities[mAsyncScroll->mFrameIndex*2];
|
||||
currentVelocityY = mAsyncScroll->mVelocities[mAsyncScroll->mFrameIndex*2 + 1];
|
||||
if (mAsyncScroll) {
|
||||
if (mAsyncScroll->mIsSmoothScroll) {
|
||||
currentVelocityX = mAsyncScroll->mVelocities[mAsyncScroll->mFrameIndex*2];
|
||||
currentVelocityY = mAsyncScroll->mVelocities[mAsyncScroll->mFrameIndex*2 + 1];
|
||||
}
|
||||
} else {
|
||||
mAsyncScroll = new AsyncScroll;
|
||||
if (mAsyncScroll) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче