зеркало из https://github.com/mozilla/gecko-dev.git
Bug 424395 - Ignore invalidation if the view observer has been disconnected. r=roc
This commit is contained in:
Родитель
24126c8471
Коммит
82e2775186
|
@ -634,7 +634,7 @@ ShouldIgnoreInvalidation(nsViewManager* aVM)
|
|||
{
|
||||
while (aVM) {
|
||||
nsIViewObserver* vo = aVM->GetViewObserver();
|
||||
if (vo && vo->ShouldIgnoreInvalidation()) {
|
||||
if (!vo || vo->ShouldIgnoreInvalidation()) {
|
||||
return PR_TRUE;
|
||||
}
|
||||
nsView* view = aVM->GetRootViewImpl()->GetParent();
|
||||
|
|
Загрузка…
Ссылка в новой задаче