зеркало из https://github.com/mozilla/gecko-dev.git
Bug 774388 - Patch 6: fix a silly double negation - r=nical
This commit is contained in:
Родитель
969d70bfa6
Коммит
166db540b6
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче