Bug 774388 - Patch 6: fix a silly double negation - r=nical

This commit is contained in:
Benoit Jacob 2014-06-06 09:51:27 -04:00
Родитель 969d70bfa6
Коммит 166db540b6
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -727,7 +727,9 @@ CompositorParent::ForceComposeToTarget(DrawTarget* aTarget, const nsIntRect* aRe
bool
CompositorParent::CanComposite()
{
return !(mPaused || !mLayerManager || !mLayerManager->GetRoot());
return mLayerManager &&
mLayerManager->GetRoot() &&
!mPaused;
}
// Go down the composite layer tree, setting properties to match their