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