Bug 937896 - Fix a compiler error. r=bustage. CLOSED TREE

This commit is contained in:
Botond Ballo 2013-11-14 15:11:53 -05:00
Родитель 354c63f3e7
Коммит e60812cf66
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1284,7 +1284,7 @@ void AsyncPanZoomController::NotifyLayersUpdated(const FrameMetrics& aLayerMetri
aLayerMetrics.mCompositionBounds.height == mFrameMetrics.mCompositionBounds.height) {
// Remote content has sync'd up to the composition geometry
// change, so we can accept the viewport it's calculated.
if (mFrameMetrics.mViewport.width != aLayerMetrics.mViewport)
if (mFrameMetrics.mViewport.width != aLayerMetrics.mViewport.width)
needContentRepaint = true;
mFrameMetrics.mViewport = aLayerMetrics.mViewport;
}